From 97ebf9021c5297a7ab2e3685bf920458d4bd3181 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 21 Jan 2016 10:42:20 +0100 Subject: bootstrapify rating and connect buttons. position the connect button more prominent right under the profile image --- include/widgets.php | 12 +++++++----- view/theme/redbasic/css/style.css | 5 +++++ view/tpl/profile_vcard.tpl | 11 ++++------- view/tpl/xchan_vcard.tpl | 9 ++++----- 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/include/widgets.php b/include/widgets.php index 60605cb51..8e8f67ae6 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -1110,16 +1110,18 @@ function widget_rating($arr) { } + + $o = '
'; + $o .= '

' . t('Rating Tools') . '

'; + if((($remote) || (local_channel())) && (! $self)) { - $o = '
'; if($remote) - $o .= ' ' . t('Rate Me') . ''; + $o .= ' ' . t('Rate Me') . ''; else - $o .= ''; - $o .= '
'; + $o .= '
' . t('Rate Me') . '
'; } - $o .= ''; return $o; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 5fcf901fb..d596fa332 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -310,6 +310,11 @@ footer { margin-bottom: 0px; } +.connect-btn-wrapper { + margin-bottom: 10px; + +} + .profile-edit-side-link { padding: 3px 0px; opacity: 0; diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl index c52c2cd81..bfd8ff042 100755 --- a/view/tpl/profile_vcard.tpl +++ b/view/tpl/profile_vcard.tpl @@ -1,5 +1,8 @@
{{$profile.name}}
+ {{if $connect}} + + {{/if}} {{if $profile.edit}}
+{{$rating}} {{$chanmenu}} diff --git a/view/tpl/xchan_vcard.tpl b/view/tpl/xchan_vcard.tpl index 2acbb24e4..ad409d75b 100755 --- a/view/tpl/xchan_vcard.tpl +++ b/view/tpl/xchan_vcard.tpl @@ -1,11 +1,10 @@
{{$name}}
+{{if $connect}} + +{{/if}}
{{$name}}
-{{if $mode != 'mail'}} -{{if $connect}} - {{$connect}} -{{/if}} -{{/if}} + -- cgit v1.2.3 From 928f1bfa7bdaa4f8a85ea4bec6ebcb182975f158 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 21 Jan 2016 10:58:38 +0100 Subject: css cleanup --- view/theme/redbasic/css/style.css | 31 ------------------------------- view/tpl/profile_vcard.tpl | 2 +- 2 files changed, 1 insertion(+), 32 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index d596fa332..8020da00a 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -480,43 +480,12 @@ footer { float: right; } -.rconnect { - display: block; - color: $nav_active_icon_colour; - margin-top: 15px; - background-color: $nav_bg; - -webkit-border-radius: $radiuspx ; - -moz-border-radius: $radiuspx; - border-radius: $radiuspx; - border: 1px solid $nav_bd; - padding: 5px; - font-weight: bold; - clear: both; -} - -a.rateme, div.rateme { - display: block; - color: $nav_active_icon_colour; - background-color: $nav_bg; - -webkit-border-radius: $radiuspx ; - -moz-border-radius: $radiuspx; - border-radius: $radiuspx; - border: 1px solid $nav_bd; - padding: 5px; - font-weight: bold; - clear: both; -} - #pause { position: fixed; bottom: 5px; right: 5px; } -#vcard-end { - clear: both; -} - #contact-block { width: 100%; float: left; diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl index bfd8ff042..5857ae5d1 100755 --- a/view/tpl/profile_vcard.tpl +++ b/view/tpl/profile_vcard.tpl @@ -49,7 +49,7 @@ {{include file="diaspora_vcard.tpl"}} {{/if}}
-
+
{{$rating}} -- cgit v1.2.3 From b711c050db39bd733f4a48cbe575b9e926aa3d0d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 21 Jan 2016 11:48:10 +0100 Subject: make contact block look widget alike --- include/text.php | 4 ++-- view/theme/redbasic/css/style.css | 7 ------- view/tpl/contact_block.tpl | 6 ++++-- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/include/text.php b/include/text.php index 6f7297bb0..a03648081 100644 --- a/include/text.php +++ b/include/text.php @@ -812,7 +812,7 @@ function contact_block() { ); if(count($r)) { - $contacts = sprintf( tt('%d Connection','%d Connections', $total),$total); + $contacts = t('Connections'); $micropro = Array(); foreach($r as $rr) { $rr['archived'] = (intval($rr['abook_archived']) ? true : false); @@ -825,7 +825,7 @@ function contact_block() { $o = replace_macros($tpl, array( '$contacts' => $contacts, '$nickname' => $a->profile['channel_address'], - '$viewconnections' => t('View Connections'), + '$viewconnections' => (($total > $shown) ? sprintf(t('View all %s connections'),$total) : ''), '$micropro' => $micropro, )); diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 8020da00a..4ae08dec8 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -489,13 +489,6 @@ footer { #contact-block { width: 100%; float: left; - background-color: rgba(254,254,254,0.5); - border-bottom: 1px solid rgba(238,238,238,0.8); - -moz-border-radius: $radiuspx; - -webkit-border-radius: $radiuspx; - border-radius: $radiuspx; - padding: 10px; - margin-bottom:10px; } #contact-block-numcontacts { diff --git a/view/tpl/contact_block.tpl b/view/tpl/contact_block.tpl index d1ce5ca67..a32437212 100755 --- a/view/tpl/contact_block.tpl +++ b/view/tpl/contact_block.tpl @@ -1,7 +1,9 @@ -
-
{{$contacts}}
+
+

{{$contacts}}

{{if $micropro}} + {{if $viewconnections}} {{$viewconnections}} + {{/if}}
{{foreach $micropro as $m}} {{$m}} -- cgit v1.2.3 From 457cc4804345cd3ac6ef821de059f20a6f1f3a27 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 21 Jan 2016 12:22:54 +0000 Subject: Type of script --- util/shredder/JSON.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/util/shredder/JSON.sh b/util/shredder/JSON.sh index 65f5f1f66..20c4d282e 100755 --- a/util/shredder/JSON.sh +++ b/util/shredder/JSON.sh @@ -1,3 +1,4 @@ +#!/bin/bash # The MIT License # # Copyright (c) 2011 Dominic Tarr -- cgit v1.2.3 From 78b2a4af1ab3668ff9b9a1e3ed7055e7cb78b612 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 21 Jan 2016 12:23:25 +0000 Subject: README files should not be executable --- library/HTMLPurifier/DefinitionCache/Serializer/README | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 library/HTMLPurifier/DefinitionCache/Serializer/README diff --git a/library/HTMLPurifier/DefinitionCache/Serializer/README b/library/HTMLPurifier/DefinitionCache/Serializer/README old mode 100755 new mode 100644 -- cgit v1.2.3 From cbedb50cb3a62b344f9d3881ea869cfc4a09e2f4 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 21 Jan 2016 12:23:49 +0000 Subject: css files should not be executable --- library/font_awesome/src/assets/css/prettify.css | 0 library/stylish_select/stylish-select.css | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 library/font_awesome/src/assets/css/prettify.css mode change 100755 => 100644 library/stylish_select/stylish-select.css diff --git a/library/font_awesome/src/assets/css/prettify.css b/library/font_awesome/src/assets/css/prettify.css old mode 100755 new mode 100644 diff --git a/library/stylish_select/stylish-select.css b/library/stylish_select/stylish-select.css old mode 100755 new mode 100644 -- cgit v1.2.3 From 88d29a7b4b0a431a118cb46433ccc93fdfb81273 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 21 Jan 2016 12:26:46 +0000 Subject: Executable flash files ??? --- library/font_awesome/src/assets/js/ZeroClipboard-1.1.7.swf | Bin 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 library/font_awesome/src/assets/js/ZeroClipboard-1.1.7.swf diff --git a/library/font_awesome/src/assets/js/ZeroClipboard-1.1.7.swf b/library/font_awesome/src/assets/js/ZeroClipboard-1.1.7.swf old mode 100755 new mode 100644 -- cgit v1.2.3 From 55e9bd36605690cc0dfdc03145ab8ed13a417866 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Thu, 21 Jan 2016 22:02:31 +0100 Subject: A few minor tweaks in schemas + link to login form in lostpass --- mod/lostpass.php | 2 +- view/theme/redbasic/schema/bluegrid.css | 8 ++++++++ view/theme/redbasic/schema/dark.css | 2 +- view/theme/redbasic/schema/simple_black_on_white.css | 4 ++++ view/theme/redbasic/schema/simple_green_on_black.css | 4 ++++ view/theme/redbasic/schema/simple_white_on_black.css | 4 ++++ 6 files changed, 22 insertions(+), 2 deletions(-) diff --git a/mod/lostpass.php b/mod/lostpass.php index 3dbc2fe7d..ffdd7b62e 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -87,7 +87,7 @@ function lostpass_content(&$a) { '$lbl2' => t('Your password has been reset as requested.'), '$lbl3' => t('Your new password is'), '$lbl4' => t('Save or copy your new password - and then'), - '$lbl5' => '' . t('click here to login') . '.', + '$lbl5' => '' . t('click here to login') . '.', '$lbl6' => t('Your password may be changed from the Settings page after successful login.'), '$newpass' => $new_password, '$baseurl' => $a->get_baseurl() diff --git a/view/theme/redbasic/schema/bluegrid.css b/view/theme/redbasic/schema/bluegrid.css index f0ae1e8df..38701024f 100644 --- a/view/theme/redbasic/schema/bluegrid.css +++ b/view/theme/redbasic/schema/bluegrid.css @@ -160,6 +160,14 @@ nav .badge:hover, nav .badge:focus { 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; } diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index 936f74761..f65e9aac9 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -88,7 +88,7 @@ background-color: #111; } -.jotnets-wrapper > a.btn { +a.btn, aside a { font-weight: 400 !important; } diff --git a/view/theme/redbasic/schema/simple_black_on_white.css b/view/theme/redbasic/schema/simple_black_on_white.css index f69ba3450..5a6b2655b 100644 --- a/view/theme/redbasic/schema/simple_black_on_white.css +++ b/view/theme/redbasic/schema/simple_black_on_white.css @@ -75,6 +75,10 @@ background-color: #fff; } +a.btn, aside a { + font-weight: 400 !important; +} + .btn-default { background-color: #fff; border-color: #000; diff --git a/view/theme/redbasic/schema/simple_green_on_black.css b/view/theme/redbasic/schema/simple_green_on_black.css index 1f0a2f1e6..d25585f98 100644 --- a/view/theme/redbasic/schema/simple_green_on_black.css +++ b/view/theme/redbasic/schema/simple_green_on_black.css @@ -75,6 +75,10 @@ background-color: #000; } +a.btn, aside a { + font-weight: 400 !important; +} + .btn-default { background-color: #000; border-color: #143D12; diff --git a/view/theme/redbasic/schema/simple_white_on_black.css b/view/theme/redbasic/schema/simple_white_on_black.css index 627f3ee5c..277ac7a12 100644 --- a/view/theme/redbasic/schema/simple_white_on_black.css +++ b/view/theme/redbasic/schema/simple_white_on_black.css @@ -71,6 +71,10 @@ background-color: #000; } +a.btn, aside a { + font-weight: 400 !important; +} + .btn-default { background-color: #000; border-color: #fff; -- cgit v1.2.3 From 8847e39fb737f36a9d478a12d6f72e87c5b15114 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 21 Jan 2016 14:03:46 -0800 Subject: regression: public forums granting send stream permissions to all connections --- include/permissions.php | 4 ++-- version.inc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/permissions.php b/include/permissions.php index a8e761f87..8071af686 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -641,10 +641,10 @@ function get_role_perms($role) { $ret['directory_publish'] = true; $ret['online'] = false; $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK - |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK - |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; $ret['channel_r_stream'] = PERMS_PUBLIC; $ret['channel_r_profile'] = PERMS_PUBLIC; diff --git a/version.inc b/version.inc index f5b62614f..2e8e8f4ff 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-01-20.1284H +2016-01-21.1285H -- cgit v1.2.3 From 2be515e7bbec6ffb960fc037be970582291039a8 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 21 Jan 2016 14:32:41 -0800 Subject: set the actual value of the password input field to a single space on remove channel and remove account because firefox does not honour 'autocomplete="off"' and insists on filling in the password, which completely defeats the purpose of password protecting this function. We want to ensure it can only be executed by somebody who knows the password and not somebody who happens upon an unattended browser session. This space is annoying and must be removed to enter the password correctly but this appears to be the only way to provide the necessary safety for that page. Setting autocomplete to a random string as suggested by the firefox doco doesn't appear to do anything useful, as autocomplete is still performed. --- view/tpl/removeaccount.tpl | 2 +- view/tpl/removeme.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/tpl/removeaccount.tpl b/view/tpl/removeaccount.tpl index aefcd51a8..ce6c8ac22 100644 --- a/view/tpl/removeaccount.tpl +++ b/view/tpl/removeaccount.tpl @@ -10,7 +10,7 @@
- +
{{include file="field_checkbox.tpl" field=$global}} diff --git a/view/tpl/removeme.tpl b/view/tpl/removeme.tpl index 5b329dd6d..40b9546d2 100755 --- a/view/tpl/removeme.tpl +++ b/view/tpl/removeme.tpl @@ -10,7 +10,7 @@
- +
{{include file="field_checkbox.tpl" field=$global}} -- cgit v1.2.3 From dff2cdc650cd3e0fc706640c01492fce2d9640f7 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Thu, 21 Jan 2016 21:39:43 -0500 Subject: Added more ActivityStreams schema support to boot.php for games --- boot.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/boot.php b/boot.php index b5a68b149..57d239bec 100755 --- a/boot.php +++ b/boot.php @@ -497,6 +497,11 @@ define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' ); define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' ); define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' ); define ( 'ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite' ); +define ( 'ACTIVITY_CREATE', NAMESPACE_ACTIVITY_SCHEMA . 'create' ); +define ( 'ACTIVITY_WIN', NAMESPACE_ACTIVITY_SCHEMA . 'win' ); +define ( 'ACTIVITY_LOSE', NAMESPACE_ACTIVITY_SCHEMA . 'lose' ); +define ( 'ACTIVITY_TIE', NAMESPACE_ACTIVITY_SCHEMA . 'tie' ); +define ( 'ACTIVITY_COMPLETE', NAMESPACE_ACTIVITY_SCHEMA . 'complete' ); define ( 'ACTIVITY_POKE', NAMESPACE_ZOT . '/activity/poke' ); define ( 'ACTIVITY_MOOD', NAMESPACE_ZOT . '/activity/mood' ); @@ -509,6 +514,7 @@ define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' ); define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' ); define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' ); define ( 'ACTIVITY_OBJ_GROUP', NAMESPACE_ACTIVITY_SCHEMA . 'group' ); +define ( 'ACTIVITY_OBJ_GAME', NAMESPACE_ACTIVITY_SCHEMA . 'game' ); define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_ZOT . '/activity/tagterm' ); define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_ZOT . '/activity/profile' ); define ( 'ACTIVITY_OBJ_THING', NAMESPACE_ZOT . '/activity/thing' ); -- cgit v1.2.3 From 7d7ef5ac4eebb1f59a8a70ef018fa8af579467e2 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 21 Jan 2016 18:42:44 -0800 Subject: add a fixme --- include/text.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/text.php b/include/text.php index a03648081..0b5ad9c72 100644 --- a/include/text.php +++ b/include/text.php @@ -2716,5 +2716,7 @@ function item_url_replace($channel,&$item,$old,$new) { $item['sig'] = base64url_encode(rsa_sign($item['body'],$channel['channel_prvkey'])); $item['item_verified'] = 1; } + + // @fixme item['plink'] and item['llink'] } -- cgit v1.2.3 From e52f64e3d2c646f6c6ed1f4710db707d23b279bf Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 21 Jan 2016 19:26:04 -0800 Subject: fix visitor photo uploads --- mod/photos.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/photos.php b/mod/photos.php index b0d9bc631..f1b7aceed 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -463,7 +463,7 @@ function photos_post(&$a) { $_REQUEST['group_deny'] = expand_acl($channel['channel_deny_gid']); } - $r = attach_store($a->channel,get_observer_hash(), '', $_REQUEST); + $r = attach_store($channel,get_observer_hash(), '', $_REQUEST); if(! $r['success']) { notice($r['message'] . EOL); -- cgit v1.2.3 From 8f6e01a70b82d772828c23ecd4da981d50a86b35 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 22 Jan 2016 09:18:02 +0000 Subject: Change node script types --- library/blueimp_upload/server/node/server.js | 2 +- library/jqupload/server/node/server.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/library/blueimp_upload/server/node/server.js b/library/blueimp_upload/server/node/server.js index 7bab20f59..808d6ffe1 100755 --- a/library/blueimp_upload/server/node/server.js +++ b/library/blueimp_upload/server/node/server.js @@ -1,4 +1,4 @@ -#!/usr/bin/env node +#!/usr/bin/nodejs /* * jQuery File Upload Plugin Node.js Example 2.1.2 * https://github.com/blueimp/jQuery-File-Upload diff --git a/library/jqupload/server/node/server.js b/library/jqupload/server/node/server.js index 5eb07a6ed..e489772b5 100755 --- a/library/jqupload/server/node/server.js +++ b/library/jqupload/server/node/server.js @@ -1,4 +1,4 @@ -#!/usr/bin/env node +#!/usr/bin/nodejs /* * jQuery File Upload Plugin Node.js Example 2.1.1 * https://github.com/blueimp/jQuery-File-Upload -- cgit v1.2.3 From 48495f41e898498a91a1b3d9e8fa1950e60a12de Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 22 Jan 2016 02:22:27 -0800 Subject: provide mechanism for custom .well-known handlers and static files (e.g. for letsencypt ownership verification). Document that if you create a .well-known directory to validate a letsencrypt cert you need to remove it before installing hubzilla. We probably need a check for this in the install checklist. --- install/INSTALL.txt | 8 + mod/_well_known.php | 13 + mod/hostxrd.php | 1 + util/hmessages.po | 3590 ++++++++++++++++++++++++++------------------------- version.inc | 2 +- 5 files changed, 1820 insertions(+), 1794 deletions(-) diff --git a/install/INSTALL.txt b/install/INSTALL.txt index 78cea638d..22c7ef35f 100644 --- a/install/INSTALL.txt +++ b/install/INSTALL.txt @@ -62,6 +62,14 @@ When communicating with new sites, Hubzilla always attempts connection on the SSL port first, before falling back to a less secure connection. If you do not use SSL, your webserver MUST NOT listen on port 443 at all. +If you use LetsEncrypt to provide certificates and create a file under +.well-known/acme-challenge so that LetsEncrypt can verify your domain ownership, +please remove or rename the .well-known directory as soon as the certificate is +generated. Hubzilla will provide its own handler for ".well-known" services when +it is installed, and an existing directory in this location may prevent some of +these services from working correctly. + + 1. Requirements - Apache with mod-rewrite enabled and "AllowOverride All" so you can use a local .htaccess file. Some folks have successfully used nginx and lighttpd. diff --git a/mod/_well_known.php b/mod/_well_known.php index d88bc2391..58ed13ece 100644 --- a/mod/_well_known.php +++ b/mod/_well_known.php @@ -33,6 +33,19 @@ function _well_known_init(&$a){ break; default: + // look in $WEBROOT/well_known for the requested file in case it is + // something a site requires and for which we do not have a module + + // @fixme - we may need to determine the content-type and stick it in the header + // for now this can be done with a php script masquerading as the requested file + + $wk_file = str_replace('.well-known','well_known',$a->cmd); + if(file_exists($wk_file)) { + echo file_get_contents($wk_file); + killme(); + } + elseif(file_exists($wk_file . '.php')) + require_once($wk_file . '.php'); break; } diff --git a/mod/hostxrd.php b/mod/hostxrd.php index 0e18c133b..18066b7bf 100644 --- a/mod/hostxrd.php +++ b/mod/hostxrd.php @@ -12,6 +12,7 @@ function hostxrd_init(&$a) { )); $arr = array('xrd' => $x); call_hooks('hostxrd',$arr); + echo $arr['xrd']; killme(); } diff --git a/util/hmessages.po b/util/hmessages.po index 1c1769fb5..d134bfcfa 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2016-01-15.1279H\n" +"Project-Id-Version: 2016-01-22.1286H\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-15 00:03-0800\n" +"POT-Creation-Date: 2016-01-22 00:03-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,110 +29,8 @@ msgstr "" msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../boot.php:1319 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../boot.php:1322 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../boot.php:1489 -msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "" - -#: ../../boot.php:1490 ../../include/nav.php:149 ../../mod/register.php:264 -msgid "Register" -msgstr "" - -#: ../../boot.php:1507 ../../include/nav.php:82 ../../include/nav.php:114 -msgid "Logout" -msgstr "" - -#: ../../boot.php:1508 ../../include/apps.php:131 ../../include/nav.php:111 -msgid "Login" -msgstr "" - -#: ../../boot.php:1510 ../../include/contact_selectors.php:79 -#: ../../mod/admin.php:891 ../../mod/admin.php:900 ../../mod/id.php:15 -#: ../../mod/id.php:16 -msgid "Email" -msgstr "" - -#: ../../boot.php:1511 -msgid "Password" -msgstr "" - -#: ../../boot.php:1512 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1512 ../../include/dir_fns.php:141 -#: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 -#: ../../mod/admin.php:421 ../../mod/api.php:102 ../../mod/events.php:447 -#: ../../mod/events.php:448 ../../mod/events.php:457 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 -#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 -#: ../../mod/photos.php:626 ../../mod/removeme.php:60 -#: ../../mod/settings.php:577 ../../mod/connedit.php:644 -#: ../../mod/connedit.php:693 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 -msgid "No" -msgstr "" - -#: ../../boot.php:1512 ../../include/dir_fns.php:141 -#: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 -#: ../../mod/admin.php:423 ../../mod/api.php:101 ../../mod/events.php:447 -#: ../../mod/events.php:448 ../../mod/events.php:457 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 -#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 -#: ../../mod/photos.php:626 ../../mod/removeme.php:60 -#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Yes" -msgstr "" - -#: ../../boot.php:1515 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:1516 ../../mod/lostpass.php:86 -msgid "Password Reset" -msgstr "" - -#: ../../boot.php:2137 -msgid "toggle mobile" -msgstr "" - -#: ../../boot.php:2289 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "" - -#: ../../boot.php:2292 -#, php-format -msgid "[hubzilla] Website SSL error for %s" -msgstr "" - -#: ../../boot.php:2329 -msgid "Cron/Scheduled tasks not running." -msgstr "" - -#: ../../boot.php:2330 ../../include/datetime.php:263 -msgid "never" -msgstr "" - -#: ../../boot.php:2333 -#, php-format -msgid "[hubzilla] Cron tasks not running on %s" -msgstr "" - -#: ../../include/Contact.php:101 ../../include/conversation.php:953 -#: ../../include/identity.php:947 ../../include/widgets.php:137 +#: ../../include/Contact.php:101 ../../include/conversation.php:961 +#: ../../include/identity.php:949 ../../include/widgets.php:137 #: ../../include/widgets.php:175 ../../mod/directory.php:318 #: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" @@ -170,22 +68,22 @@ msgstr "" #: ../../include/ItemObject.php:100 ../../include/RedDAV/RedBrowser.php:240 #: ../../include/apps.php:259 ../../include/menu.php:108 #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/blocks.php:153 ../../mod/connections.php:262 -#: ../../mod/connections.php:281 ../../mod/connections.php:301 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:176 -#: ../../mod/layouts.php:183 ../../mod/menu.php:108 ../../mod/settings.php:648 -#: ../../mod/thing.php:257 ../../mod/webpages.php:181 +#: ../../mod/blocks.php:153 ../../mod/connections.php:284 +#: ../../mod/connections.php:304 ../../mod/editblock.php:135 +#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112 +#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183 +#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:257 +#: ../../mod/webpages.php:181 msgid "Edit" msgstr "" #: ../../include/ItemObject.php:120 ../../include/RedDAV/RedBrowser.php:241 #: ../../include/apps.php:260 ../../include/conversation.php:657 #: ../../mod/admin.php:895 ../../mod/admin.php:1054 ../../mod/blocks.php:155 -#: ../../mod/connections.php:263 ../../mod/editblock.php:181 -#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223 -#: ../../mod/group.php:173 ../../mod/photos.php:1126 -#: ../../mod/settings.php:649 ../../mod/connedit.php:560 +#: ../../mod/connections.php:259 ../../mod/connedit.php:560 +#: ../../mod/editblock.php:181 ../../mod/editlayout.php:179 +#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 +#: ../../mod/photos.php:1126 ../../mod/settings.php:649 #: ../../mod/thing.php:258 ../../mod/webpages.php:183 msgid "Delete" msgstr "" @@ -223,13 +121,13 @@ msgid "I abstain" msgstr "" #: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1697 ../../mod/photos.php:1079 +#: ../../include/conversation.php:1707 ../../mod/photos.php:1079 #: ../../mod/photos.php:1091 msgid "View all" msgstr "" -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1721 -#: ../../include/identity.php:1258 ../../include/taxonomy.php:414 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1731 +#: ../../include/taxonomy.php:414 ../../include/identity.php:1262 #: ../../mod/photos.php:1083 msgctxt "noun" msgid "Like" @@ -237,7 +135,7 @@ msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1724 +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1734 #: ../../mod/photos.php:1088 msgctxt "noun" msgid "Dislike" @@ -372,7 +270,7 @@ msgid "Close" msgstr "" #: ../../include/ItemObject.php:389 ../../include/conversation.php:740 -#: ../../include/conversation.php:1227 ../../mod/editblock.php:150 +#: ../../include/conversation.php:1237 ../../mod/editblock.php:150 #: ../../mod/editlayout.php:148 ../../mod/editpost.php:129 #: ../../mod/editwebpage.php:190 ../../mod/photos.php:1026 msgid "Please wait" @@ -397,50 +295,50 @@ msgstr "" #: ../../mod/admin.php:453 ../../mod/admin.php:596 ../../mod/admin.php:888 #: ../../mod/admin.php:1052 ../../mod/admin.php:1228 ../../mod/admin.php:1423 #: ../../mod/admin.php:1508 ../../mod/appman.php:99 ../../mod/chat.php:184 -#: ../../mod/chat.php:213 ../../mod/connect.php:93 ../../mod/events.php:461 -#: ../../mod/events.php:658 ../../mod/filestorage.php:156 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/import.php:527 -#: ../../mod/import_items.php:122 ../../mod/invite.php:142 +#: ../../mod/chat.php:213 ../../mod/connect.php:93 ../../mod/connedit.php:720 +#: ../../mod/events.php:461 ../../mod/events.php:658 +#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 +#: ../../mod/group.php:81 ../../mod/import.php:527 +#: ../../mod/import_items.php:116 ../../mod/invite.php:142 #: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231 -#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:58 +#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59 #: ../../mod/photos.php:637 ../../mod/photos.php:1005 #: ../../mod/photos.php:1045 ../../mod/photos.php:1163 ../../mod/poke.php:171 #: ../../mod/profiles.php:675 ../../mod/rate.php:168 #: ../../mod/settings.php:586 ../../mod/settings.php:698 #: ../../mod/settings.php:726 ../../mod/settings.php:749 #: ../../mod/settings.php:834 ../../mod/settings.php:1023 -#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/connedit.php:724 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:313 -#: ../../mod/thing.php:359 ../../mod/xchan.php:11 -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/thing.php:313 ../../mod/thing.php:359 +#: ../../mod/xchan.php:11 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "" -#: ../../include/ItemObject.php:698 ../../include/conversation.php:1199 +#: ../../include/ItemObject.php:698 ../../include/conversation.php:1209 #: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 #: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177 msgid "Bold" msgstr "" -#: ../../include/ItemObject.php:699 ../../include/conversation.php:1200 +#: ../../include/ItemObject.php:699 ../../include/conversation.php:1210 #: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 #: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178 msgid "Italic" msgstr "" -#: ../../include/ItemObject.php:700 ../../include/conversation.php:1201 +#: ../../include/ItemObject.php:700 ../../include/conversation.php:1211 #: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 #: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179 msgid "Underline" msgstr "" -#: ../../include/ItemObject.php:701 ../../include/conversation.php:1202 +#: ../../include/ItemObject.php:701 ../../include/conversation.php:1212 #: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 #: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180 msgid "Quote" msgstr "" -#: ../../include/ItemObject.php:702 ../../include/conversation.php:1203 +#: ../../include/ItemObject.php:702 ../../include/conversation.php:1213 #: ../../mod/editblock.php:140 ../../mod/editlayout.php:139 #: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181 msgid "Code" @@ -458,7 +356,7 @@ msgstr "" msgid "Video" msgstr "" -#: ../../include/ItemObject.php:706 ../../include/conversation.php:1169 +#: ../../include/ItemObject.php:706 ../../include/conversation.php:1179 #: ../../include/page_widgets.php:40 ../../mod/editblock.php:171 #: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212 #: ../../mod/events.php:458 ../../mod/photos.php:1046 @@ -466,7 +364,7 @@ msgstr "" msgid "Preview" msgstr "" -#: ../../include/ItemObject.php:709 ../../include/conversation.php:1257 +#: ../../include/ItemObject.php:709 ../../include/conversation.php:1267 #: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385 msgid "Encrypt text" msgstr "" @@ -501,14 +399,14 @@ msgid "Schedule Outbox" msgstr "" #: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360 -#: ../../include/apps.php:415 ../../include/conversation.php:1027 -#: ../../include/widgets.php:1366 ../../mod/photos.php:754 +#: ../../include/apps.php:415 ../../include/conversation.php:1037 +#: ../../include/widgets.php:1368 ../../mod/photos.php:754 #: ../../mod/photos.php:1195 msgid "Unknown" msgstr "" #: ../../include/RedDAV/RedBrowser.php:226 ../../include/apps.php:135 -#: ../../include/conversation.php:1629 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 ../../include/nav.php:93 #: ../../mod/fbrowser.php:109 msgid "Files" msgstr "" @@ -530,7 +428,7 @@ msgid "Create" msgstr "" #: ../../include/RedDAV/RedBrowser.php:231 -#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1379 +#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1381 #: ../../mod/photos.php:781 ../../mod/photos.php:1316 #: ../../mod/profile_photo.php:453 ../../mod/cover_photo.php:353 msgid "Upload" @@ -616,7 +514,7 @@ msgid "Registration request at %s" msgstr "" #: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1659 +#: ../../include/account.php:404 ../../include/network.php:1660 msgid "Administrator" msgstr "" @@ -707,7 +605,7 @@ msgstr "" msgid "Site Admin" msgstr "" -#: ../../include/apps.php:129 ../../include/conversation.php:1655 +#: ../../include/apps.php:129 ../../include/conversation.php:1665 #: ../../include/nav.php:103 msgid "Bookmarks" msgstr "" @@ -716,6 +614,10 @@ msgstr "" msgid "Address Book" msgstr "" +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1508 +msgid "Login" +msgstr "" + #: ../../include/apps.php:132 ../../include/nav.php:200 #: ../../mod/manage.php:160 msgid "Channel Manager" @@ -731,7 +633,7 @@ msgstr "" msgid "Settings" msgstr "" -#: ../../include/apps.php:136 ../../include/conversation.php:1665 +#: ../../include/apps.php:136 ../../include/conversation.php:1675 #: ../../include/nav.php:107 ../../mod/webpages.php:178 msgid "Webpages" msgstr "" @@ -740,12 +642,12 @@ msgstr "" msgid "Channel Home" msgstr "" -#: ../../include/apps.php:138 ../../include/identity.php:1232 -#: ../../include/identity.php:1349 ../../mod/profperm.php:112 +#: ../../include/apps.php:138 ../../include/identity.php:1236 +#: ../../include/identity.php:1353 ../../mod/profperm.php:112 msgid "Profile" msgstr "" -#: ../../include/apps.php:139 ../../include/conversation.php:1622 +#: ../../include/apps.php:139 ../../include/conversation.php:1632 #: ../../include/nav.php:92 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" @@ -771,7 +673,7 @@ msgstr "" msgid "Mood" msgstr "" -#: ../../include/apps.php:145 ../../include/conversation.php:956 +#: ../../include/apps.php:145 ../../include/conversation.php:965 msgid "Poke" msgstr "" @@ -781,7 +683,7 @@ msgstr "" #: ../../include/apps.php:147 ../../include/nav.php:159 #: ../../include/text.php:885 ../../include/text.php:897 -#: ../../mod/connections.php:297 ../../mod/search.php:40 +#: ../../mod/connections.php:300 ../../mod/search.php:40 msgid "Search" msgstr "" @@ -801,7 +703,7 @@ msgstr "" msgid "Invite" msgstr "" -#: ../../include/apps.php:152 ../../include/widgets.php:1252 +#: ../../include/apps.php:152 ../../include/widgets.php:1254 msgid "Features" msgstr "" @@ -837,37 +739,37 @@ msgstr "" #: ../../include/attach.php:351 ../../include/attach.php:358 #: ../../include/attach.php:436 ../../include/attach.php:888 #: ../../include/attach.php:959 ../../include/attach.php:1111 -#: ../../include/chat.php:133 ../../include/items.php:4405 -#: ../../include/photos.php:29 ../../index.php:182 ../../index.php:367 +#: ../../include/chat.php:133 ../../include/photos.php:29 +#: ../../include/items.php:4407 ../../index.php:186 ../../index.php:371 #: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22 #: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 #: ../../mod/bookmarks.php:48 ../../mod/channel.php:100 #: ../../mod/channel.php:214 ../../mod/channel.php:254 ../../mod/chat.php:94 #: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/connections.php:29 -#: ../../mod/editblock.php:65 ../../mod/editlayout.php:63 -#: ../../mod/editlayout.php:87 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/events.php:260 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/group.php:9 ../../mod/id.php:71 ../../mod/invite.php:13 -#: ../../mod/invite.php:87 ../../mod/item.php:206 ../../mod/item.php:214 -#: ../../mod/item.php:1049 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/like.php:177 ../../mod/locs.php:83 -#: ../../mod/mail.php:126 ../../mod/manage.php:6 ../../mod/menu.php:74 -#: ../../mod/message.php:16 ../../mod/mitem.php:111 ../../mod/mood.php:112 -#: ../../mod/network.php:12 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/pdledit.php:21 -#: ../../mod/photos.php:70 ../../mod/poke.php:133 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/profile_photo.php:341 -#: ../../mod/profile_photo.php:354 ../../mod/profiles.php:198 -#: ../../mod/profiles.php:584 ../../mod/rate.php:111 ../../mod/register.php:73 -#: ../../mod/regmod.php:17 ../../mod/service_limits.php:7 -#: ../../mod/settings.php:568 ../../mod/setup.php:227 -#: ../../mod/connedit.php:355 ../../mod/sharedwithme.php:7 +#: ../../mod/connedit.php:355 ../../mod/editblock.php:65 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101 +#: ../../mod/editwebpage.php:125 ../../mod/events.php:260 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71 +#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:1050 ../../mod/layouts.php:69 +#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177 +#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6 +#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111 +#: ../../mod/mood.php:112 ../../mod/network.php:12 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/notifications.php:66 ../../mod/page.php:31 ../../mod/page.php:86 +#: ../../mod/pdledit.php:22 ../../mod/photos.php:70 ../../mod/poke.php:133 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/profile_photo.php:341 ../../mod/profile_photo.php:354 +#: ../../mod/profiles.php:198 ../../mod/profiles.php:584 +#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17 +#: ../../mod/service_limits.php:7 ../../mod/settings.php:568 +#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 #: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:271 #: ../../mod/thing.php:291 ../../mod/thing.php:328 #: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 @@ -974,7 +876,7 @@ msgid "Finishes:" msgstr "" #: ../../include/bb2diaspora.php:487 ../../include/event.php:52 -#: ../../include/identity.php:998 ../../include/text.php:1425 +#: ../../include/identity.php:1000 ../../include/text.php:1425 #: ../../mod/directory.php:304 msgid "Location:" msgstr "" @@ -1071,66 +973,6 @@ msgstr "" msgid "Default" msgstr "" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - #: ../../include/contact_widgets.php:14 #, php-format msgid "%d invitation available" @@ -1158,7 +1000,7 @@ msgstr "" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:300 +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:303 #: ../../mod/directory.php:381 ../../mod/directory.php:386 msgid "Find" msgstr "" @@ -1180,7 +1022,7 @@ msgstr "" msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../include/contact_widgets.php:57 ../../include/features.php:92 +#: ../../include/contact_widgets.php:57 ../../include/features.php:93 #: ../../include/widgets.php:304 msgid "Saved Folders" msgstr "" @@ -1330,389 +1172,385 @@ msgstr "" msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:946 +#: ../../include/conversation.php:953 msgid "View Source" msgstr "" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:954 msgid "Follow Thread" msgstr "" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:955 msgid "Unfollow Thread" msgstr "" -#: ../../include/conversation.php:949 -msgid "View Status" -msgstr "" - -#: ../../include/conversation.php:950 ../../include/nav.php:86 +#: ../../include/conversation.php:959 ../../include/nav.php:86 #: ../../mod/connedit.php:507 msgid "View Profile" msgstr "" -#: ../../include/conversation.php:951 -msgid "View Photos" -msgstr "" - -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:960 msgid "Activity/Posts" msgstr "" -#: ../../include/conversation.php:954 +#: ../../include/conversation.php:962 msgid "Edit Connection" msgstr "" -#: ../../include/conversation.php:955 -msgid "Send PM" +#: ../../include/conversation.php:963 +msgid "Message" +msgstr "" + +#: ../../include/conversation.php:964 ../../mod/ratings.php:99 +msgid "Ratings" msgstr "" -#: ../../include/conversation.php:1070 +#: ../../include/conversation.php:1080 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:1070 +#: ../../include/conversation.php:1080 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:1074 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1076 +#: ../../include/conversation.php:1086 #, 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:1082 +#: ../../include/conversation.php:1092 msgid "and" msgstr "" -#: ../../include/conversation.php:1085 +#: ../../include/conversation.php:1095 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1086 +#: ../../include/conversation.php:1096 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:1086 +#: ../../include/conversation.php:1096 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1154 +#: ../../include/conversation.php:1164 msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:1155 ../../mod/mail.php:202 +#: ../../include/conversation.php:1165 ../../mod/mail.php:202 #: ../../mod/mail.php:316 msgid "Please enter a link URL:" msgstr "" -#: ../../include/conversation.php:1156 +#: ../../include/conversation.php:1166 msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/conversation.php:1157 +#: ../../include/conversation.php:1167 msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/conversation.php:1158 +#: ../../include/conversation.php:1168 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1159 ../../mod/filer.php:48 +#: ../../include/conversation.php:1169 ../../mod/filer.php:48 msgid "Save to Folder:" msgstr "" -#: ../../include/conversation.php:1160 +#: ../../include/conversation.php:1170 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:1161 ../../mod/editpost.php:56 +#: ../../include/conversation.php:1171 ../../mod/editpost.php:56 #: ../../mod/mail.php:203 ../../mod/mail.php:317 msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/conversation.php:1192 ../../mod/blocks.php:154 +#: ../../include/conversation.php:1202 ../../mod/blocks.php:154 #: ../../mod/layouts.php:184 ../../mod/photos.php:1025 #: ../../mod/webpages.php:182 msgid "Share" msgstr "" -#: ../../include/conversation.php:1194 +#: ../../include/conversation.php:1204 msgid "Page link name" msgstr "" -#: ../../include/conversation.php:1197 +#: ../../include/conversation.php:1207 msgid "Post as" msgstr "" -#: ../../include/conversation.php:1204 ../../mod/editblock.php:142 +#: ../../include/conversation.php:1214 ../../mod/editblock.php:142 #: ../../mod/editlayout.php:140 ../../mod/editpost.php:118 #: ../../mod/editwebpage.php:182 msgid "Upload photo" msgstr "" -#: ../../include/conversation.php:1205 +#: ../../include/conversation.php:1215 msgid "upload photo" msgstr "" -#: ../../include/conversation.php:1206 ../../mod/editblock.php:143 +#: ../../include/conversation.php:1216 ../../mod/editblock.php:143 #: ../../mod/editlayout.php:141 ../../mod/editpost.php:119 #: ../../mod/editwebpage.php:183 ../../mod/mail.php:248 ../../mod/mail.php:378 msgid "Attach file" msgstr "" -#: ../../include/conversation.php:1207 +#: ../../include/conversation.php:1217 msgid "attach file" msgstr "" -#: ../../include/conversation.php:1208 ../../mod/editblock.php:144 +#: ../../include/conversation.php:1218 ../../mod/editblock.php:144 #: ../../mod/editlayout.php:142 ../../mod/editpost.php:120 #: ../../mod/editwebpage.php:184 ../../mod/mail.php:249 ../../mod/mail.php:379 msgid "Insert web link" msgstr "" -#: ../../include/conversation.php:1209 +#: ../../include/conversation.php:1219 msgid "web link" msgstr "" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1220 msgid "Insert video link" msgstr "" -#: ../../include/conversation.php:1211 +#: ../../include/conversation.php:1221 msgid "video link" msgstr "" -#: ../../include/conversation.php:1212 +#: ../../include/conversation.php:1222 msgid "Insert audio link" msgstr "" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1223 msgid "audio link" msgstr "" -#: ../../include/conversation.php:1214 ../../mod/editblock.php:148 +#: ../../include/conversation.php:1224 ../../mod/editblock.php:148 #: ../../mod/editlayout.php:146 ../../mod/editpost.php:124 #: ../../mod/editwebpage.php:188 msgid "Set your location" msgstr "" -#: ../../include/conversation.php:1215 +#: ../../include/conversation.php:1225 msgid "set location" msgstr "" -#: ../../include/conversation.php:1216 ../../mod/editpost.php:126 +#: ../../include/conversation.php:1226 ../../mod/editpost.php:126 msgid "Toggle voting" msgstr "" -#: ../../include/conversation.php:1219 ../../mod/editblock.php:149 +#: ../../include/conversation.php:1229 ../../mod/editblock.php:149 #: ../../mod/editlayout.php:147 ../../mod/editpost.php:125 #: ../../mod/editwebpage.php:189 msgid "Clear browser location" msgstr "" -#: ../../include/conversation.php:1220 +#: ../../include/conversation.php:1230 msgid "clear location" msgstr "" -#: ../../include/conversation.php:1222 ../../mod/editblock.php:162 +#: ../../include/conversation.php:1232 ../../mod/editblock.php:162 #: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205 msgid "Title (optional)" msgstr "" -#: ../../include/conversation.php:1226 ../../mod/editblock.php:165 +#: ../../include/conversation.php:1236 ../../mod/editblock.php:165 #: ../../mod/editlayout.php:163 ../../mod/editpost.php:143 #: ../../mod/editwebpage.php:207 msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/conversation.php:1228 ../../mod/editblock.php:151 +#: ../../include/conversation.php:1238 ../../mod/editblock.php:151 #: ../../mod/editlayout.php:149 ../../mod/editpost.php:130 #: ../../mod/editwebpage.php:191 ../../mod/events.php:459 msgid "Permission settings" msgstr "" -#: ../../include/conversation.php:1229 +#: ../../include/conversation.php:1239 msgid "permissions" msgstr "" -#: ../../include/conversation.php:1237 ../../mod/editblock.php:159 +#: ../../include/conversation.php:1247 ../../mod/editblock.php:159 #: ../../mod/editlayout.php:156 ../../mod/editpost.php:138 #: ../../mod/editwebpage.php:200 msgid "Public post" msgstr "" -#: ../../include/conversation.php:1239 ../../mod/editblock.php:166 +#: ../../include/conversation.php:1249 ../../mod/editblock.php:166 #: ../../mod/editlayout.php:164 ../../mod/editpost.php:144 #: ../../mod/editwebpage.php:208 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/conversation.php:1252 ../../mod/editblock.php:176 +#: ../../include/conversation.php:1262 ../../mod/editblock.php:176 #: ../../mod/editlayout.php:173 ../../mod/editpost.php:155 #: ../../mod/editwebpage.php:217 ../../mod/mail.php:253 ../../mod/mail.php:383 msgid "Set expiration date" msgstr "" -#: ../../include/conversation.php:1255 +#: ../../include/conversation.php:1265 msgid "Set publish date" msgstr "" -#: ../../include/conversation.php:1259 ../../mod/editpost.php:159 +#: ../../include/conversation.php:1269 ../../mod/editpost.php:159 msgid "OK" msgstr "" -#: ../../include/conversation.php:1260 ../../mod/editpost.php:160 +#: ../../include/conversation.php:1270 ../../mod/editpost.php:160 #: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112 #: ../../mod/settings.php:587 ../../mod/settings.php:613 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "" -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1513 msgid "Discover" msgstr "" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1516 msgid "Imported public streams" msgstr "" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1521 msgid "Commented Order" msgstr "" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1524 msgid "Sort by Comment Date" msgstr "" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1528 msgid "Posted Order" msgstr "" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1531 msgid "Sort by Post Date" msgstr "" -#: ../../include/conversation.php:1526 ../../include/widgets.php:95 +#: ../../include/conversation.php:1536 ../../include/widgets.php:95 msgid "Personal" msgstr "" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1539 msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1535 ../../mod/connections.php:72 +#: ../../include/conversation.php:1545 ../../mod/connections.php:72 #: ../../mod/connections.php:82 ../../mod/menu.php:112 msgid "New" msgstr "" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1548 msgid "Activity Stream - by date" msgstr "" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1554 msgid "Starred" msgstr "" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1557 msgid "Favourite Posts" msgstr "" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1564 msgid "Spam" msgstr "" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1567 msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1601 ../../mod/admin.php:1059 +#: ../../include/conversation.php:1611 ../../mod/admin.php:1059 msgid "Channel" msgstr "" -#: ../../include/conversation.php:1604 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1613 +#: ../../include/conversation.php:1623 msgid "About" msgstr "" -#: ../../include/conversation.php:1616 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1625 ../../include/photos.php:506 +#: ../../include/conversation.php:1635 ../../include/photos.php:506 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1632 +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1642 ../../include/conversation.php:1645 +#: ../../include/conversation.php:1652 ../../include/conversation.php:1655 msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1658 +#: ../../include/conversation.php:1668 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1668 +#: ../../include/conversation.php:1678 msgid "Manage Webpages" msgstr "" -#: ../../include/conversation.php:1727 +#: ../../include/conversation.php:1737 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1730 +#: ../../include/conversation.php:1740 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1733 +#: ../../include/conversation.php:1743 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1736 +#: ../../include/conversation.php:1746 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1739 +#: ../../include/conversation.php:1749 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1742 +#: ../../include/conversation.php:1752 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -1732,6 +1570,10 @@ msgstr "" msgid "Required" msgstr "" +#: ../../include/datetime.php:263 ../../boot.php:2330 +msgid "never" +msgstr "" + #: ../../include/datetime.php:269 msgid "less than a second ago" msgstr "" @@ -1821,6 +1663,31 @@ msgstr "" msgid "Safe Mode" msgstr "" +#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 +#: ../../include/dir_fns.php:143 ../../mod/admin.php:421 ../../mod/api.php:102 +#: ../../mod/connedit.php:644 ../../mod/connedit.php:693 +#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 +#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 +#: ../../mod/photos.php:626 ../../mod/removeme.php:60 +#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1512 +msgid "No" +msgstr "" + +#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 +#: ../../include/dir_fns.php:143 ../../mod/admin.php:423 ../../mod/api.php:101 +#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 +#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 +#: ../../mod/photos.php:626 ../../mod/removeme.php:60 +#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1512 +msgid "Yes" +msgstr "" + #: ../../include/dir_fns.php:142 msgid "Public Forums Only" msgstr "" @@ -2048,1709 +1915,1738 @@ msgstr "" msgid "Cancelled" msgstr "" -#: ../../include/features.php:45 -msgid "General Features" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/features.php:47 -msgid "Content Expiration" +#: ../../include/follow.php:33 +msgid "Channel location missing." msgstr "" -#: ../../include/features.php:47 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/features.php:48 -msgid "Multiple Profiles" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/features.php:48 -msgid "Ability to create multiple profiles" +#: ../../include/follow.php:153 ../../include/follow.php:183 +msgid "Protocol disabled." msgstr "" -#: ../../include/features.php:49 -msgid "Advanced Profiles" +#: ../../include/follow.php:173 +msgid "Channel discovery failed." msgstr "" -#: ../../include/features.php:49 -msgid "Additional profile sections and selections" +#: ../../include/follow.php:199 +msgid "local account not found." msgstr "" -#: ../../include/features.php:50 -msgid "Profile Import/Export" +#: ../../include/follow.php:224 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/features.php:50 -msgid "Save and load profile details across sites/channels" +#: ../../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/features.php:51 -msgid "Web Pages" +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" msgstr "" -#: ../../include/features.php:51 -msgid "Provide managed web pages on your channel" +#: ../../include/group.php:251 ../../mod/admin.php:900 +msgid "All Channels" msgstr "" -#: ../../include/features.php:52 -msgid "Private Notes" +#: ../../include/group.php:273 +msgid "edit" msgstr "" -#: ../../include/features.php:52 -msgid "Enables a tool to store notes and reminders" +#: ../../include/group.php:295 +msgid "Collections" msgstr "" -#: ../../include/features.php:53 -msgid "Navigation Channel Select" +#: ../../include/group.php:296 +msgid "Edit collection" msgstr "" -#: ../../include/features.php:53 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../include/group.php:297 +msgid "Add new collection" msgstr "" -#: ../../include/features.php:54 -msgid "Photo Location" +#: ../../include/group.php:298 +msgid "Channels not in any collection" msgstr "" -#: ../../include/features.php:54 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../include/group.php:300 ../../include/widgets.php:275 +msgid "add" msgstr "" -#: ../../include/features.php:56 -msgid "Expert Mode" +#: ../../include/import.php:23 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/features.php:56 -msgid "Enable Expert Mode to provide advanced configuration options" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/features.php:57 -msgid "Premium Channel" +#: ../../include/import.php:80 ../../mod/import.php:139 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../include/features.php:57 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/features.php:62 -msgid "Post Composition Features" +#: ../../include/js_strings.php:8 +msgid "[-] show less" msgstr "" -#: ../../include/features.php:64 -msgid "Use Markdown" +#: ../../include/js_strings.php:9 +msgid "[+] expand" msgstr "" -#: ../../include/features.php:64 -msgid "Allow use of \"Markdown\" to format posts" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" msgstr "" -#: ../../include/features.php:65 -msgid "Large Photos" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../include/features.php:65 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/features.php:66 ../../include/widgets.php:549 -#: ../../mod/sources.php:88 -msgid "Channel Sources" +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 +msgid "everybody" msgstr "" -#: ../../include/features.php:66 -msgid "Automatically import channel content from other channels or feeds" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../include/features.php:67 -msgid "Even More Encryption" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../include/features.php:67 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/features.php:68 -msgid "Enable Voting Tools" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../include/features.php:68 -msgid "Provide a class of post which others can vote on" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../include/features.php:69 -msgid "Delayed Posting" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/features.php:69 -msgid "Allow posts to be published at a later date" +#: ../../include/js_strings.php:20 ../../mod/connedit.php:703 +#: ../../mod/rate.php:157 +msgid "Rating" msgstr "" -#: ../../include/features.php:70 -msgid "Suppress Duplicate Posts/Comments" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../include/features.php:70 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../include/features.php:76 -msgid "Network and Stream Filtering" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/features.php:77 -msgid "Search by Date" +#: ../../include/js_strings.php:25 ../../mod/events.php:452 +#: ../../mod/profiles.php:464 ../../mod/pubsites.php:28 +msgid "Location" msgstr "" -#: ../../include/features.php:77 -msgid "Ability to select posts by date ranges" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" msgstr "" -#: ../../include/features.php:78 -msgid "Collections Filter" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/features.php:78 -msgid "Enable widget to display Network posts only from selected collections" +#: ../../include/js_strings.php:29 +msgid "ago" msgstr "" -#: ../../include/features.php:79 ../../include/widgets.php:274 -msgid "Saved Searches" +#: ../../include/js_strings.php:30 +msgid "from now" msgstr "" -#: ../../include/features.php:79 -msgid "Save search terms for re-use" +#: ../../include/js_strings.php:31 +msgid "less than a minute" msgstr "" -#: ../../include/features.php:80 -msgid "Network Personal Tab" +#: ../../include/js_strings.php:32 +msgid "about a minute" msgstr "" -#: ../../include/features.php:80 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" msgstr "" -#: ../../include/features.php:81 -msgid "Network New Tab" +#: ../../include/js_strings.php:34 +msgid "about an hour" msgstr "" -#: ../../include/features.php:81 -msgid "Enable tab to display all new Network activity" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" msgstr "" -#: ../../include/features.php:82 -msgid "Affinity Tool" +#: ../../include/js_strings.php:36 +msgid "a day" msgstr "" -#: ../../include/features.php:82 -msgid "Filter stream activity by depth of relationships" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" msgstr "" -#: ../../include/features.php:83 -msgid "Connection Filtering" +#: ../../include/js_strings.php:38 +msgid "about a month" msgstr "" -#: ../../include/features.php:83 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" msgstr "" -#: ../../include/features.php:84 -msgid "Suggest Channels" +#: ../../include/js_strings.php:40 +msgid "about a year" msgstr "" -#: ../../include/features.php:84 -msgid "Show channel suggestions" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" msgstr "" -#: ../../include/features.php:89 -msgid "Post/Comment Tools" +#: ../../include/js_strings.php:42 +msgid " " msgstr "" -#: ../../include/features.php:90 -msgid "Community Tagging" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" msgstr "" -#: ../../include/features.php:90 -msgid "Ability to tag existing posts" +#: ../../include/js_strings.php:45 ../../include/text.php:1183 +msgid "January" msgstr "" -#: ../../include/features.php:91 -msgid "Post Categories" +#: ../../include/js_strings.php:46 ../../include/text.php:1183 +msgid "February" msgstr "" -#: ../../include/features.php:91 -msgid "Add categories to your posts" +#: ../../include/js_strings.php:47 ../../include/text.php:1183 +msgid "March" msgstr "" -#: ../../include/features.php:92 -msgid "Ability to file posts under folders" +#: ../../include/js_strings.php:48 ../../include/text.php:1183 +msgid "April" msgstr "" -#: ../../include/features.php:93 -msgid "Dislike Posts" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" msgstr "" -#: ../../include/features.php:93 -msgid "Ability to dislike posts/comments" +#: ../../include/js_strings.php:50 ../../include/text.php:1183 +msgid "June" msgstr "" -#: ../../include/features.php:94 -msgid "Star Posts" +#: ../../include/js_strings.php:51 ../../include/text.php:1183 +msgid "July" msgstr "" -#: ../../include/features.php:94 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/js_strings.php:52 ../../include/text.php:1183 +msgid "August" msgstr "" -#: ../../include/features.php:95 -msgid "Tag Cloud" +#: ../../include/js_strings.php:53 ../../include/text.php:1183 +msgid "September" msgstr "" -#: ../../include/features.php:95 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/js_strings.php:54 ../../include/text.php:1183 +msgid "October" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." +#: ../../include/js_strings.php:55 ../../include/text.php:1183 +msgid "November" msgstr "" -#: ../../include/follow.php:33 -msgid "Channel location missing." +#: ../../include/js_strings.php:56 ../../include/text.php:1183 +msgid "December" msgstr "" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." +#: ../../include/js_strings.php:57 +msgid "Jan" msgstr "" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." +#: ../../include/js_strings.php:58 +msgid "Feb" msgstr "" -#: ../../include/follow.php:153 ../../include/follow.php:183 -msgid "Protocol disabled." +#: ../../include/js_strings.php:59 +msgid "Mar" msgstr "" -#: ../../include/follow.php:173 -msgid "Channel discovery failed." +#: ../../include/js_strings.php:60 +msgid "Apr" msgstr "" -#: ../../include/follow.php:199 -msgid "local account not found." +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" msgstr "" -#: ../../include/follow.php:224 -msgid "Cannot connect to yourself." +#: ../../include/js_strings.php:62 +msgid "Jun" 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." +#: ../../include/js_strings.php:63 +msgid "Jul" msgstr "" -#: ../../include/group.php:232 -msgid "Add new connections to this collection (privacy group)" +#: ../../include/js_strings.php:64 +msgid "Aug" msgstr "" -#: ../../include/group.php:251 ../../mod/admin.php:900 -msgid "All Channels" +#: ../../include/js_strings.php:65 +msgid "Sep" msgstr "" -#: ../../include/group.php:273 -msgid "edit" -msgstr "" - -#: ../../include/group.php:295 -msgid "Collections" +#: ../../include/js_strings.php:66 +msgid "Oct" msgstr "" -#: ../../include/group.php:296 -msgid "Edit collection" +#: ../../include/js_strings.php:67 +msgid "Nov" msgstr "" -#: ../../include/group.php:297 -msgid "Add new collection" +#: ../../include/js_strings.php:68 +msgid "Dec" msgstr "" -#: ../../include/group.php:298 -msgid "Channels not in any collection" +#: ../../include/js_strings.php:69 ../../include/text.php:1179 +msgid "Sunday" msgstr "" -#: ../../include/group.php:300 ../../include/widgets.php:275 -msgid "add" +#: ../../include/js_strings.php:70 ../../include/text.php:1179 +msgid "Monday" msgstr "" -#: ../../include/identity.php:32 -msgid "Unable to obtain identity information from database" +#: ../../include/js_strings.php:71 ../../include/text.php:1179 +msgid "Tuesday" msgstr "" -#: ../../include/identity.php:66 -msgid "Empty name" +#: ../../include/js_strings.php:72 ../../include/text.php:1179 +msgid "Wednesday" msgstr "" -#: ../../include/identity.php:69 -msgid "Name too long" +#: ../../include/js_strings.php:73 ../../include/text.php:1179 +msgid "Thursday" msgstr "" -#: ../../include/identity.php:181 -msgid "No account identifier" +#: ../../include/js_strings.php:74 ../../include/text.php:1179 +msgid "Friday" msgstr "" -#: ../../include/identity.php:193 -msgid "Nickname is required." +#: ../../include/js_strings.php:75 ../../include/text.php:1179 +msgid "Saturday" msgstr "" -#: ../../include/identity.php:207 -msgid "Reserved nickname. Please choose another." +#: ../../include/js_strings.php:76 +msgid "Sun" msgstr "" -#: ../../include/identity.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/js_strings.php:77 +msgid "Mon" msgstr "" -#: ../../include/identity.php:288 -msgid "Unable to retrieve created identity" +#: ../../include/js_strings.php:78 +msgid "Tue" msgstr "" -#: ../../include/identity.php:346 -msgid "Default Profile" +#: ../../include/js_strings.php:79 +msgid "Wed" msgstr "" -#: ../../include/identity.php:390 ../../include/identity.php:391 -#: ../../include/identity.php:398 ../../include/profile_selectors.php:80 -#: ../../include/widgets.php:430 ../../mod/settings.php:338 -#: ../../mod/settings.php:342 ../../mod/settings.php:343 -#: ../../mod/settings.php:346 ../../mod/settings.php:357 -#: ../../mod/connedit.php:582 -msgid "Friends" +#: ../../include/js_strings.php:80 +msgid "Thu" msgstr "" -#: ../../include/identity.php:770 -msgid "Requested channel is not available." +#: ../../include/js_strings.php:81 +msgid "Fri" msgstr "" -#: ../../include/identity.php:816 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 -#: ../../mod/profile.php:16 ../../mod/webpages.php:29 -msgid "Requested profile is not available." +#: ../../include/js_strings.php:82 +msgid "Sat" msgstr "" -#: ../../include/identity.php:960 ../../mod/profiles.php:782 -msgid "Change profile photo" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" msgstr "" -#: ../../include/identity.php:966 -msgid "Profiles" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../include/identity.php:966 -msgid "Manage/edit profiles" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../include/identity.php:967 ../../mod/profiles.php:783 -msgid "Create New Profile" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../include/identity.php:970 ../../include/nav.php:90 -msgid "Edit Profile" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../include/identity.php:982 ../../mod/profiles.php:794 -msgid "Profile Image" +#: ../../include/message.php:20 +msgid "No recipient provided." msgstr "" -#: ../../include/identity.php:985 -msgid "visible to everybody" +#: ../../include/message.php:25 +msgid "[no subject]" msgstr "" -#: ../../include/identity.php:986 ../../mod/profiles.php:677 -#: ../../mod/profiles.php:798 -msgid "Edit visibility" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/identity.php:1002 ../../include/identity.php:1242 -msgid "Gender:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/identity.php:1003 ../../include/identity.php:1286 -msgid "Status:" +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1507 +msgid "Logout" msgstr "" -#: ../../include/identity.php:1004 ../../include/identity.php:1297 -msgid "Homepage:" +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" msgstr "" -#: ../../include/identity.php:1005 -msgid "Online Now" +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" msgstr "" -#: ../../include/identity.php:1089 ../../include/identity.php:1167 -#: ../../mod/ping.php:318 -msgid "g A l F d" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" msgstr "" -#: ../../include/identity.php:1090 ../../include/identity.php:1168 -msgid "F d" +#: ../../include/nav.php:86 +msgid "Your profile page" msgstr "" -#: ../../include/identity.php:1135 ../../include/identity.php:1207 -#: ../../mod/ping.php:341 -msgid "[today]" +#: ../../include/nav.php:88 +msgid "Edit Profiles" msgstr "" -#: ../../include/identity.php:1146 -msgid "Birthday Reminders" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/identity.php:1147 -msgid "Birthdays this week:" +#: ../../include/nav.php:90 ../../include/identity.php:972 +msgid "Edit Profile" msgstr "" -#: ../../include/identity.php:1200 -msgid "[No description]" +#: ../../include/nav.php:90 +msgid "Edit your profile" msgstr "" -#: ../../include/identity.php:1218 -msgid "Event Reminders" +#: ../../include/nav.php:92 +msgid "Your photos" msgstr "" -#: ../../include/identity.php:1219 -msgid "Events this week:" +#: ../../include/nav.php:93 +msgid "Your files" msgstr "" -#: ../../include/identity.php:1240 ../../mod/settings.php:1029 -msgid "Full Name:" +#: ../../include/nav.php:97 +msgid "Your chatrooms" msgstr "" -#: ../../include/identity.php:1247 -msgid "Like this channel" +#: ../../include/nav.php:103 +msgid "Your bookmarks" msgstr "" -#: ../../include/identity.php:1271 -msgid "j F, Y" +#: ../../include/nav.php:107 +msgid "Your webpages" msgstr "" -#: ../../include/identity.php:1272 -msgid "j F" +#: ../../include/nav.php:111 +msgid "Sign in" msgstr "" -#: ../../include/identity.php:1279 -msgid "Birthday:" +#: ../../include/nav.php:128 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/identity.php:1283 ../../mod/directory.php:299 -msgid "Age:" +#: ../../include/nav.php:131 +msgid "Remote authentication" msgstr "" -#: ../../include/identity.php:1292 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/identity.php:1295 ../../mod/profiles.php:699 -msgid "Sexual Preference:" +#: ../../include/nav.php:145 +msgid "Home Page" msgstr "" -#: ../../include/identity.php:1299 ../../mod/directory.php:315 -#: ../../mod/profiles.php:701 -msgid "Hometown:" +#: ../../include/nav.php:149 ../../mod/register.php:264 ../../boot.php:1490 +msgid "Register" msgstr "" -#: ../../include/identity.php:1301 -msgid "Tags:" +#: ../../include/nav.php:149 +msgid "Create an account" msgstr "" -#: ../../include/identity.php:1303 ../../mod/profiles.php:702 -msgid "Political Views:" +#: ../../include/nav.php:154 +msgid "Help and documentation" msgstr "" -#: ../../include/identity.php:1305 -msgid "Religion:" +#: ../../include/nav.php:157 ../../include/widgets.php:92 +#: ../../mod/apps.php:36 +msgid "Apps" msgstr "" -#: ../../include/identity.php:1307 ../../mod/directory.php:317 -msgid "About:" +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/identity.php:1309 -msgid "Hobbies/Interests:" +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/identity.php:1311 ../../mod/profiles.php:705 -msgid "Likes:" +#: ../../include/nav.php:162 +msgid "Channel Directory" msgstr "" -#: ../../include/identity.php:1313 ../../mod/profiles.php:706 -msgid "Dislikes:" +#: ../../include/nav.php:174 +msgid "Your grid" msgstr "" -#: ../../include/identity.php:1315 -msgid "Contact information and Social Networks:" +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" msgstr "" -#: ../../include/identity.php:1317 -msgid "My other channels:" +#: ../../include/nav.php:177 +msgid "Channel home" msgstr "" -#: ../../include/identity.php:1319 -msgid "Musical interests:" +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/identity.php:1321 -msgid "Books, literature:" +#: ../../include/nav.php:181 ../../include/text.php:815 +#: ../../mod/connections.php:296 +msgid "Connections" msgstr "" -#: ../../include/identity.php:1323 -msgid "Television:" +#: ../../include/nav.php:184 +msgid "Notices" msgstr "" -#: ../../include/identity.php:1325 -msgid "Film/dance/culture/entertainment:" +#: ../../include/nav.php:184 +msgid "Notifications" msgstr "" -#: ../../include/identity.php:1327 -msgid "Love/Romance:" +#: ../../include/nav.php:185 +msgid "See all notifications" msgstr "" -#: ../../include/identity.php:1329 -msgid "Work/employment:" +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" msgstr "" -#: ../../include/identity.php:1331 -msgid "School/education:" +#: ../../include/nav.php:188 +msgid "Private mail" msgstr "" -#: ../../include/identity.php:1351 -msgid "Like this thing" +#: ../../include/nav.php:189 +msgid "See all private messages" msgstr "" -#: ../../include/identity.php:1759 ../../mod/cover_photo.php:236 -msgid "cover photo" +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/import.php:23 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/nav.php:191 ../../include/widgets.php:578 +msgid "Inbox" msgstr "" -#: ../../include/import.php:70 -msgid "Channel clone failed. Import failed." +#: ../../include/nav.php:192 ../../include/widgets.php:583 +msgid "Outbox" msgstr "" -#: ../../include/import.php:80 ../../mod/import.php:139 -msgid "Cloned channel not found. Import failed." +#: ../../include/nav.php:193 ../../include/widgets.php:588 +msgid "New Message" msgstr "" -#: ../../include/items.php:423 ../../index.php:366 ../../mod/dreport.php:6 -#: ../../mod/dreport.php:45 ../../mod/group.php:68 -#: ../../mod/import_items.php:114 ../../mod/like.php:280 -#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 -msgid "Permission denied" +#: ../../include/nav.php:196 +msgid "Event Calendar" msgstr "" -#: ../../include/items.php:1130 ../../include/items.php:1176 -msgid "(Unknown)" +#: ../../include/nav.php:197 +msgid "See all events" msgstr "" -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." +#: ../../include/nav.php:198 +msgid "Mark all events seen" msgstr "" -#: ../../include/items.php:1375 -msgid "Visible to you only." +#: ../../include/nav.php:200 +msgid "Manage Your Channels" msgstr "" -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." +#: ../../include/nav.php:210 ../../include/widgets.php:1281 +msgid "Admin" msgstr "" -#: ../../include/items.php:1381 +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "" + +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "" + +#: ../../include/network.php:630 +msgid "view full size" +msgstr "" + +#: ../../include/network.php:1674 +msgid "No Subject" +msgstr "" + +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "" + +#: ../../include/notify.php:21 #, php-format -msgid "Visible to anybody on %s." +msgid "commented on %s's post" msgstr "" -#: ../../include/items.php:1383 -msgid "Visible to all connections." +#: ../../include/oembed.php:213 +msgid "Embedded content" msgstr "" -#: ../../include/items.php:1385 -msgid "Visible to approved connections." +#: ../../include/oembed.php:222 +msgid "Embedding disabled" msgstr "" -#: ../../include/items.php:1387 -msgid "Visible to specific connections." +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/items.php:4326 ../../mod/admin.php:135 -#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:86 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 +#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 +msgid "View" msgstr "" -#: ../../include/items.php:4838 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" msgstr "" -#: ../../include/items.php:4854 -msgid "Collection is empty." +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" msgstr "" -#: ../../include/items.php:4861 -#, php-format -msgid "Collection: %s" +#: ../../include/page_widgets.php:43 +msgid "Title" msgstr "" -#: ../../include/items.php:4871 ../../mod/connedit.php:692 -#, php-format -msgid "Connection: %s" +#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 +#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:192 +msgid "Created" msgstr "" -#: ../../include/items.php:4873 -msgid "Connection not found." +#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 +#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:193 +msgid "Edited" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/js_strings.php:8 -msgid "[-] show less" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" msgstr "" -#: ../../include/js_strings.php:9 -msgid "[+] expand" +#: ../../include/permissions.php:28 +msgid "Can view my connections" msgstr "" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/js_strings.php:13 ../../mod/photos.php:41 -msgid "everybody" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/js_strings.php:20 ../../mod/rate.php:157 -#: ../../mod/connedit.php:703 -msgid "Rating" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" msgstr "" -#: ../../include/js_strings.php:25 ../../mod/events.php:452 -#: ../../mod/profiles.php:464 ../../mod/pubsites.php:28 -msgid "Location" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" +#: ../../include/permissions.php:46 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/js_strings.php:29 -msgid "ago" +#: ../../include/permissions.php:867 +msgid "Social Networking" msgstr "" -#: ../../include/js_strings.php:30 -msgid "from now" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" msgstr "" -#: ../../include/js_strings.php:31 -msgid "less than a minute" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" msgstr "" -#: ../../include/js_strings.php:32 -msgid "about a minute" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" msgstr "" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" +#: ../../include/permissions.php:868 +msgid "Community Forum" msgstr "" -#: ../../include/js_strings.php:34 -msgid "about an hour" +#: ../../include/permissions.php:869 +msgid "Feed Republish" msgstr "" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" +#: ../../include/permissions.php:870 +msgid "Special Purpose" msgstr "" -#: ../../include/js_strings.php:36 -msgid "a day" +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" msgstr "" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" +#: ../../include/permissions.php:870 +msgid "Group Repository" msgstr "" -#: ../../include/js_strings.php:38 -msgid "about a month" +#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" msgstr "" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" msgstr "" -#: ../../include/js_strings.php:40 -msgid "about a year" +#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94 +#: ../../mod/photos.php:699 ../../mod/profile_photo.php:147 +#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379 +msgid "Profile Photos" msgstr "" -#: ../../include/js_strings.php:41 +#: ../../include/photos.php:112 #, php-format -msgid "%d years" +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/js_strings.php:42 -msgid " " +#: ../../include/photos.php:119 +msgid "Image file is empty." msgstr "" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" +#: ../../include/photos.php:146 ../../mod/profile_photo.php:225 +#: ../../mod/cover_photo.php:164 +msgid "Unable to process image" msgstr "" -#: ../../include/js_strings.php:45 ../../include/text.php:1183 -msgid "January" +#: ../../include/photos.php:257 +msgid "Photo storage failed." msgstr "" -#: ../../include/js_strings.php:46 ../../include/text.php:1183 -msgid "February" +#: ../../include/photos.php:297 +msgid "a new photo" msgstr "" -#: ../../include/js_strings.php:47 ../../include/text.php:1183 -msgid "March" +#: ../../include/photos.php:301 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/js_strings.php:48 ../../include/text.php:1183 -msgid "April" +#: ../../include/photos.php:510 +msgid "Upload New Photos" msgstr "" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 +msgid "Male" msgstr "" -#: ../../include/js_strings.php:50 ../../include/text.php:1183 -msgid "June" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 +msgid "Female" msgstr "" -#: ../../include/js_strings.php:51 ../../include/text.php:1183 -msgid "July" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: ../../include/js_strings.php:52 ../../include/text.php:1183 -msgid "August" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: ../../include/js_strings.php:53 ../../include/text.php:1183 -msgid "September" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" msgstr "" -#: ../../include/js_strings.php:54 ../../include/text.php:1183 -msgid "October" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" msgstr "" -#: ../../include/js_strings.php:55 ../../include/text.php:1183 -msgid "November" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" msgstr "" -#: ../../include/js_strings.php:56 ../../include/text.php:1183 -msgid "December" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" msgstr "" -#: ../../include/js_strings.php:57 -msgid "Jan" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" msgstr "" -#: ../../include/js_strings.php:58 -msgid "Feb" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" msgstr "" -#: ../../include/js_strings.php:59 -msgid "Mar" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" msgstr "" -#: ../../include/js_strings.php:60 -msgid "Apr" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" msgstr "" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" msgstr "" -#: ../../include/js_strings.php:62 -msgid "Jun" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" msgstr "" -#: ../../include/js_strings.php:63 -msgid "Jul" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" msgstr "" -#: ../../include/js_strings.php:64 -msgid "Aug" +#: ../../include/profile_selectors.php:42 +msgid "Gay" msgstr "" -#: ../../include/js_strings.php:65 -msgid "Sep" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" msgstr "" -#: ../../include/js_strings.php:66 -msgid "Oct" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" msgstr "" -#: ../../include/js_strings.php:67 -msgid "Nov" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" msgstr "" -#: ../../include/js_strings.php:69 ../../include/text.php:1179 -msgid "Sunday" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" msgstr "" -#: ../../include/js_strings.php:70 ../../include/text.php:1179 -msgid "Monday" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" msgstr "" -#: ../../include/js_strings.php:71 ../../include/text.php:1179 -msgid "Tuesday" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" msgstr "" -#: ../../include/js_strings.php:72 ../../include/text.php:1179 -msgid "Wednesday" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" msgstr "" -#: ../../include/js_strings.php:73 ../../include/text.php:1179 -msgid "Thursday" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" msgstr "" -#: ../../include/js_strings.php:74 ../../include/text.php:1179 -msgid "Friday" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" msgstr "" -#: ../../include/js_strings.php:75 ../../include/text.php:1179 -msgid "Saturday" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" msgstr "" -#: ../../include/js_strings.php:77 -msgid "Mon" +#: ../../include/profile_selectors.php:80 +msgid "Available" msgstr "" -#: ../../include/js_strings.php:78 -msgid "Tue" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" msgstr "" -#: ../../include/js_strings.php:79 -msgid "Wed" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" +#: ../../include/profile_selectors.php:80 ../../include/identity.php:390 +#: ../../include/identity.php:391 ../../include/identity.php:398 +#: ../../include/widgets.php:430 ../../mod/connedit.php:582 +#: ../../mod/settings.php:338 ../../mod/settings.php:342 +#: ../../mod/settings.php:343 ../../mod/settings.php:346 +#: ../../mod/settings.php:357 +msgid "Friends" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" +#: ../../include/profile_selectors.php:80 +msgid "Casual" msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "" + +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" msgstr "" -#: ../../include/message.php:20 -msgid "No recipient provided." +#: ../../include/profile_selectors.php:80 +msgid "Partners" msgstr "" -#: ../../include/message.php:25 -msgid "[no subject]" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/profile_selectors.php:80 +msgid "Common law" msgstr "" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." +#: ../../include/profile_selectors.php:80 +msgid "Happy" msgstr "" -#: ../../include/nav.php:82 ../../include/nav.php:114 -msgid "End this session" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" msgstr "" -#: ../../include/nav.php:85 ../../include/nav.php:145 -msgid "Home" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" msgstr "" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" msgstr "" -#: ../../include/nav.php:86 -msgid "Your profile page" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" msgstr "" -#: ../../include/nav.php:88 -msgid "Edit Profiles" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" msgstr "" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" msgstr "" -#: ../../include/nav.php:90 -msgid "Edit your profile" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" msgstr "" -#: ../../include/nav.php:92 -msgid "Your photos" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" msgstr "" -#: ../../include/nav.php:93 -msgid "Your files" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" msgstr "" -#: ../../include/nav.php:97 -msgid "Your chatrooms" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" msgstr "" -#: ../../include/nav.php:103 -msgid "Your bookmarks" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" msgstr "" -#: ../../include/nav.php:107 -msgid "Your webpages" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" msgstr "" -#: ../../include/nav.php:111 -msgid "Sign in" +#: ../../include/security.php:384 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/nav.php:128 -#, php-format -msgid "%s - click to logout" +#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 +msgid "Tags" msgstr "" -#: ../../include/nav.php:131 -msgid "Remote authentication" +#: ../../include/taxonomy.php:305 +msgid "Keywords" msgstr "" -#: ../../include/nav.php:131 -msgid "Click to authenticate to your home hub" +#: ../../include/taxonomy.php:326 +msgid "have" msgstr "" -#: ../../include/nav.php:145 -msgid "Home Page" +#: ../../include/taxonomy.php:326 +msgid "has" msgstr "" -#: ../../include/nav.php:149 -msgid "Create an account" +#: ../../include/taxonomy.php:327 +msgid "want" msgstr "" -#: ../../include/nav.php:154 -msgid "Help and documentation" +#: ../../include/taxonomy.php:327 +msgid "wants" msgstr "" -#: ../../include/nav.php:157 ../../include/widgets.php:92 -#: ../../mod/apps.php:36 -msgid "Apps" +#: ../../include/taxonomy.php:328 +msgid "likes" msgstr "" -#: ../../include/nav.php:157 -msgid "Applications, utilities, links, games" +#: ../../include/taxonomy.php:329 +msgid "dislikes" msgstr "" -#: ../../include/nav.php:159 -msgid "Search site @name, #tag, ?docs, content" +#: ../../include/zot.php:676 +msgid "Invalid data packet" msgstr "" -#: ../../include/nav.php:162 -msgid "Channel Directory" +#: ../../include/zot.php:692 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/nav.php:174 -msgid "Your grid" +#: ../../include/zot.php:2268 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/nav.php:175 -msgid "Mark all grid notifications seen" +#: ../../include/zot.php:3584 +msgid "invalid target signature" msgstr "" -#: ../../include/nav.php:177 -msgid "Channel home" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" msgstr "" -#: ../../include/nav.php:178 -msgid "Mark all channel notifications seen" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" msgstr "" -#: ../../include/nav.php:181 ../../mod/connections.php:293 -msgid "Connections" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" msgstr "" -#: ../../include/nav.php:184 -msgid "Notices" +#: ../../include/contact_selectors.php:59 +msgid "Daily" msgstr "" -#: ../../include/nav.php:184 -msgid "Notifications" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" msgstr "" -#: ../../include/nav.php:185 -msgid "See all notifications" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" msgstr "" -#: ../../include/nav.php:186 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" msgstr "" -#: ../../include/nav.php:188 -msgid "Private mail" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" msgstr "" -#: ../../include/nav.php:189 -msgid "See all private messages" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" msgstr "" -#: ../../include/nav.php:190 -msgid "Mark all private messages seen" +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:891 +#: ../../mod/admin.php:900 ../../mod/id.php:15 ../../mod/id.php:16 +#: ../../boot.php:1510 +msgid "Email" msgstr "" -#: ../../include/nav.php:191 ../../include/widgets.php:578 -msgid "Inbox" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" msgstr "" -#: ../../include/nav.php:192 ../../include/widgets.php:583 -msgid "Outbox" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" msgstr "" -#: ../../include/nav.php:193 ../../include/widgets.php:588 -msgid "New Message" +#: ../../include/contact_selectors.php:82 +msgid "Zot" msgstr "" -#: ../../include/nav.php:196 -msgid "Event Calendar" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" msgstr "" -#: ../../include/nav.php:197 -msgid "See all events" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" msgstr "" -#: ../../include/nav.php:198 -msgid "Mark all events seen" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" msgstr "" -#: ../../include/nav.php:200 -msgid "Manage Your Channels" +#: ../../include/features.php:45 +msgid "General Features" msgstr "" -#: ../../include/nav.php:202 -msgid "Account/Channel Settings" +#: ../../include/features.php:47 +msgid "Content Expiration" msgstr "" -#: ../../include/nav.php:210 ../../include/widgets.php:1279 -msgid "Admin" +#: ../../include/features.php:47 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/nav.php:210 -msgid "Site Setup and Configuration" +#: ../../include/features.php:48 +msgid "Multiple Profiles" msgstr "" -#: ../../include/nav.php:246 -msgid "@name, #tag, ?doc, content" +#: ../../include/features.php:48 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/nav.php:247 -msgid "Please wait..." +#: ../../include/features.php:49 +msgid "Advanced Profiles" msgstr "" -#: ../../include/network.php:630 -msgid "view full size" +#: ../../include/features.php:49 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/network.php:1673 -msgid "No Subject" +#: ../../include/features.php:50 +msgid "Profile Import/Export" msgstr "" -#: ../../include/notify.php:20 -msgid "created a new post" +#: ../../include/features.php:50 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/notify.php:21 -#, php-format -msgid "commented on %s's post" +#: ../../include/features.php:51 +msgid "Web Pages" msgstr "" -#: ../../include/oembed.php:213 -msgid "Embedded content" +#: ../../include/features.php:51 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/oembed.php:222 -msgid "Embedding disabled" +#: ../../include/features.php:52 +msgid "Hide Rating" msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" +#: ../../include/features.php:52 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 -#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 -msgid "View" +#: ../../include/features.php:53 +msgid "Private Notes" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" +#: ../../include/features.php:53 +msgid "Enables a tool to store notes and reminders" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" +#: ../../include/features.php:54 +msgid "Navigation Channel Select" msgstr "" -#: ../../include/page_widgets.php:43 -msgid "Title" +#: ../../include/features.php:54 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 -#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:192 -msgid "Created" +#: ../../include/features.php:55 +msgid "Photo Location" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 -#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:193 -msgid "Edited" +#: ../../include/features.php:55 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" +#: ../../include/features.php:57 +msgid "Expert Mode" msgstr "" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" +#: ../../include/features.php:57 +msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can view my connections" +#: ../../include/features.php:58 +msgid "Premium Channel" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" +#: ../../include/features.php:58 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" +#: ../../include/features.php:63 +msgid "Post Composition Features" msgstr "" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" +#: ../../include/features.php:65 +msgid "Use Markdown" msgstr "" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/features.php:65 +msgid "Allow use of \"Markdown\" to format posts" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" +#: ../../include/features.php:66 +msgid "Large Photos" msgstr "" -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" +#: ../../include/features.php:66 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" +#: ../../include/features.php:67 ../../include/widgets.php:549 +#: ../../mod/sources.php:88 +msgid "Channel Sources" msgstr "" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" +#: ../../include/features.php:67 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/features.php:68 +msgid "Even More Encryption" msgstr "" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/features.php:68 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" +#: ../../include/features.php:69 +msgid "Enable Voting Tools" msgstr "" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" +#: ../../include/features.php:69 +msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" +#: ../../include/features.php:70 +msgid "Delayed Posting" msgstr "" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" +#: ../../include/features.php:70 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/features.php:71 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" +#: ../../include/features.php:71 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../include/permissions.php:46 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/features.php:77 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/permissions.php:867 -msgid "Social Networking" +#: ../../include/features.php:78 +msgid "Search by Date" msgstr "" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -#: ../../include/permissions.php:869 -msgid "Mostly Public" +#: ../../include/features.php:78 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -#: ../../include/permissions.php:869 -msgid "Restricted" +#: ../../include/features.php:79 +msgid "Collections (Privacy Groups)" msgstr "" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -msgid "Private" +#: ../../include/features.php:79 +msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/permissions.php:868 -msgid "Community Forum" +#: ../../include/features.php:80 ../../include/widgets.php:274 +msgid "Saved Searches" msgstr "" -#: ../../include/permissions.php:869 -msgid "Feed Republish" +#: ../../include/features.php:80 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/permissions.php:870 -msgid "Special Purpose" +#: ../../include/features.php:81 +msgid "Network Personal Tab" msgstr "" -#: ../../include/permissions.php:870 -msgid "Celebrity/Soapbox" +#: ../../include/features.php:81 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/permissions.php:870 -msgid "Group Repository" +#: ../../include/features.php:82 +msgid "Network New Tab" msgstr "" -#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" +#: ../../include/features.php:82 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/permissions.php:871 -msgid "Custom/Expert Mode" +#: ../../include/features.php:83 +msgid "Affinity Tool" msgstr "" -#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94 -#: ../../mod/photos.php:699 ../../mod/profile_photo.php:147 -#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379 -msgid "Profile Photos" +#: ../../include/features.php:83 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/photos.php:112 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/features.php:84 +msgid "Connection Filtering" msgstr "" -#: ../../include/photos.php:119 -msgid "Image file is empty." +#: ../../include/features.php:84 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/photos.php:146 ../../mod/profile_photo.php:225 -#: ../../mod/cover_photo.php:164 -msgid "Unable to process image" +#: ../../include/features.php:85 +msgid "Suggest Channels" msgstr "" -#: ../../include/photos.php:257 -msgid "Photo storage failed." +#: ../../include/features.php:85 +msgid "Show channel suggestions" msgstr "" -#: ../../include/photos.php:297 -msgid "a new photo" +#: ../../include/features.php:90 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/photos.php:301 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../include/features.php:91 +msgid "Community Tagging" msgstr "" -#: ../../include/photos.php:510 -msgid "Upload New Photos" +#: ../../include/features.php:91 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" +#: ../../include/features.php:92 +msgid "Post Categories" msgstr "" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" +#: ../../include/features.php:92 +msgid "Add categories to your posts" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" +#: ../../include/features.php:93 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" +#: ../../include/features.php:94 +msgid "Dislike Posts" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" +#: ../../include/features.php:94 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" +#: ../../include/features.php:95 +msgid "Star Posts" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" +#: ../../include/features.php:95 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" +#: ../../include/features.php:96 +msgid "Tag Cloud" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" +#: ../../include/features.php:96 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" +#: ../../include/identity.php:66 +msgid "Empty name" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" +#: ../../include/identity.php:69 +msgid "Name too long" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" +#: ../../include/identity.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" +#: ../../include/identity.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Gay" +#: ../../include/identity.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" +#: ../../include/identity.php:288 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" +#: ../../include/identity.php:346 +msgid "Default Profile" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" +#: ../../include/identity.php:772 +msgid "Requested channel is not available." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" +#: ../../include/identity.php:818 ../../mod/achievements.php:11 +#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29 +#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 +#: ../../mod/profile.php:16 ../../mod/webpages.php:29 +msgid "Requested profile is not available." +msgstr "" + +#: ../../include/identity.php:962 ../../mod/profiles.php:782 +msgid "Change profile photo" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" +#: ../../include/identity.php:968 +msgid "Profiles" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" +#: ../../include/identity.php:968 +msgid "Manage/edit profiles" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" +#: ../../include/identity.php:969 ../../mod/profiles.php:783 +msgid "Create New Profile" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" +#: ../../include/identity.php:984 ../../mod/profiles.php:794 +msgid "Profile Image" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" +#: ../../include/identity.php:987 +msgid "visible to everybody" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" +#: ../../include/identity.php:988 ../../mod/profiles.php:677 +#: ../../mod/profiles.php:798 +msgid "Edit visibility" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" +#: ../../include/identity.php:1004 ../../include/identity.php:1246 +msgid "Gender:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" +#: ../../include/identity.php:1005 ../../include/identity.php:1290 +msgid "Status:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Available" +#: ../../include/identity.php:1006 ../../include/identity.php:1301 +msgid "Homepage:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" +#: ../../include/identity.php:1007 +msgid "Online Now" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" +#: ../../include/identity.php:1093 ../../include/identity.php:1171 +#: ../../mod/ping.php:318 +msgid "g A l F d" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" +#: ../../include/identity.php:1094 ../../include/identity.php:1172 +msgid "F d" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" +#: ../../include/identity.php:1139 ../../include/identity.php:1211 +#: ../../mod/ping.php:341 +msgid "[today]" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" +#: ../../include/identity.php:1150 +msgid "Birthday Reminders" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" +#: ../../include/identity.php:1151 +msgid "Birthdays this week:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" +#: ../../include/identity.php:1204 +msgid "[No description]" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Casual" +#: ../../include/identity.php:1222 +msgid "Event Reminders" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" +#: ../../include/identity.php:1223 +msgid "Events this week:" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" +#: ../../include/identity.php:1244 ../../mod/settings.php:1029 +msgid "Full Name:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" +#: ../../include/identity.php:1251 +msgid "Like this channel" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Partners" +#: ../../include/identity.php:1275 +msgid "j F, Y" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" +#: ../../include/identity.php:1276 +msgid "j F" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Common law" +#: ../../include/identity.php:1283 +msgid "Birthday:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Happy" +#: ../../include/identity.php:1287 ../../mod/directory.php:299 +msgid "Age:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" +#: ../../include/identity.php:1296 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" +#: ../../include/identity.php:1299 ../../mod/profiles.php:699 +msgid "Sexual Preference:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" +#: ../../include/identity.php:1303 ../../mod/directory.php:315 +#: ../../mod/profiles.php:701 +msgid "Hometown:" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" +#: ../../include/identity.php:1305 +msgid "Tags:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" +#: ../../include/identity.php:1307 ../../mod/profiles.php:702 +msgid "Political Views:" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" +#: ../../include/identity.php:1309 +msgid "Religion:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" +#: ../../include/identity.php:1311 ../../mod/directory.php:317 +msgid "About:" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" +#: ../../include/identity.php:1313 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" +#: ../../include/identity.php:1315 ../../mod/profiles.php:705 +msgid "Likes:" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" +#: ../../include/identity.php:1317 ../../mod/profiles.php:706 +msgid "Dislikes:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" +#: ../../include/identity.php:1319 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" +#: ../../include/identity.php:1321 +msgid "My other channels:" msgstr "" -#: ../../include/security.php:381 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: ../../include/identity.php:1323 +msgid "Musical interests:" msgstr "" -#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 -msgid "Tags" +#: ../../include/identity.php:1325 +msgid "Books, literature:" msgstr "" -#: ../../include/taxonomy.php:305 -msgid "Keywords" +#: ../../include/identity.php:1327 +msgid "Television:" msgstr "" -#: ../../include/taxonomy.php:326 -msgid "have" +#: ../../include/identity.php:1329 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/taxonomy.php:326 -msgid "has" +#: ../../include/identity.php:1331 +msgid "Love/Romance:" msgstr "" -#: ../../include/taxonomy.php:327 -msgid "want" +#: ../../include/identity.php:1333 +msgid "Work/employment:" msgstr "" -#: ../../include/taxonomy.php:327 -msgid "wants" +#: ../../include/identity.php:1335 +msgid "School/education:" msgstr "" -#: ../../include/taxonomy.php:328 -msgid "likes" +#: ../../include/identity.php:1355 +msgid "Like this thing" msgstr "" -#: ../../include/taxonomy.php:329 -msgid "dislikes" +#: ../../include/identity.php:1763 ../../mod/cover_photo.php:236 +msgid "cover photo" msgstr "" #: ../../include/text.php:394 @@ -3781,15 +3677,9 @@ msgstr "" msgid "No connections" msgstr "" -#: ../../include/text.php:815 +#: ../../include/text.php:828 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:828 ../../mod/viewconnections.php:101 -msgid "View Connections" +msgid "View all %s connections" msgstr "" #: ../../include/text.php:886 ../../include/text.php:898 @@ -3999,23 +3889,6 @@ msgstr "" msgid "Pages" msgstr "" -#: ../../include/zot.php:676 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:692 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:2268 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/zot.php:3584 -msgid "invalid target signature" -msgstr "" - #: ../../include/widgets.php:93 msgid "System" msgstr "" @@ -4206,107 +4079,184 @@ msgstr "" msgid "photo/image" msgstr "" -#: ../../include/widgets.php:1116 ../../include/widgets.php:1118 +#: ../../include/widgets.php:1115 +msgid "Rating Tools" +msgstr "" + +#: ../../include/widgets.php:1119 ../../include/widgets.php:1121 msgid "Rate Me" msgstr "" -#: ../../include/widgets.php:1122 +#: ../../include/widgets.php:1124 msgid "View Ratings" msgstr "" -#: ../../include/widgets.php:1133 +#: ../../include/widgets.php:1135 msgid "Public Hubs" msgstr "" -#: ../../include/widgets.php:1181 +#: ../../include/widgets.php:1183 msgid "Forums" msgstr "" -#: ../../include/widgets.php:1210 +#: ../../include/widgets.php:1212 msgid "Tasks" msgstr "" -#: ../../include/widgets.php:1219 +#: ../../include/widgets.php:1221 msgid "Documentation" msgstr "" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1223 msgid "Project/Site Information" msgstr "" -#: ../../include/widgets.php:1222 +#: ../../include/widgets.php:1224 msgid "For Members" msgstr "" -#: ../../include/widgets.php:1223 +#: ../../include/widgets.php:1225 msgid "For Administrators" msgstr "" -#: ../../include/widgets.php:1224 +#: ../../include/widgets.php:1226 msgid "For Developers" msgstr "" -#: ../../include/widgets.php:1249 ../../mod/admin.php:452 +#: ../../include/widgets.php:1251 ../../mod/admin.php:452 msgid "Site" msgstr "" -#: ../../include/widgets.php:1250 +#: ../../include/widgets.php:1252 msgid "Accounts" msgstr "" -#: ../../include/widgets.php:1251 ../../mod/admin.php:1051 +#: ../../include/widgets.php:1253 ../../mod/admin.php:1051 msgid "Channels" msgstr "" -#: ../../include/widgets.php:1253 ../../mod/admin.php:1166 +#: ../../include/widgets.php:1255 ../../mod/admin.php:1166 #: ../../mod/admin.php:1227 msgid "Plugins" msgstr "" -#: ../../include/widgets.php:1254 ../../mod/admin.php:1388 +#: ../../include/widgets.php:1256 ../../mod/admin.php:1388 #: ../../mod/admin.php:1422 msgid "Themes" msgstr "" -#: ../../include/widgets.php:1255 +#: ../../include/widgets.php:1257 msgid "Inspect queue" msgstr "" -#: ../../include/widgets.php:1256 +#: ../../include/widgets.php:1258 msgid "Profile Config" msgstr "" -#: ../../include/widgets.php:1257 +#: ../../include/widgets.php:1259 msgid "DB updates" msgstr "" -#: ../../include/widgets.php:1275 ../../include/widgets.php:1281 +#: ../../include/widgets.php:1277 ../../include/widgets.php:1283 #: ../../mod/admin.php:1507 msgid "Logs" msgstr "" -#: ../../include/widgets.php:1280 -msgid "Plugin Features" +#: ../../include/widgets.php:1282 +msgid "Plugin Features" +msgstr "" + +#: ../../include/widgets.php:1284 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1362 ../../mod/photos.php:748 +#: ../../mod/photos.php:1283 +msgid "View Photo" +msgstr "" + +#: ../../include/widgets.php:1379 ../../mod/photos.php:779 +msgid "Edit Album" +msgstr "" + +#: ../../include/items.php:423 ../../index.php:370 ../../mod/dreport.php:6 +#: ../../mod/dreport.php:45 ../../mod/group.php:68 +#: ../../mod/import_items.php:108 ../../mod/like.php:280 +#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:1130 ../../include/items.php:1176 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1375 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1381 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1383 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1385 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1387 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:4328 ../../mod/admin.php:135 +#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4840 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4856 +msgid "Collection is empty." msgstr "" -#: ../../include/widgets.php:1282 -msgid "User registrations waiting for confirmation" +#: ../../include/items.php:4863 +#, php-format +msgid "Collection: %s" msgstr "" -#: ../../include/widgets.php:1360 ../../mod/photos.php:748 -#: ../../mod/photos.php:1283 -msgid "View Photo" +#: ../../include/items.php:4873 ../../mod/connedit.php:692 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../include/widgets.php:1377 ../../mod/photos.php:779 -msgid "Edit Album" +#: ../../include/items.php:4875 +msgid "Connection not found." msgstr "" -#: ../../index.php:238 ../../mod/help.php:213 +#: ../../index.php:242 ../../mod/help.php:213 msgid "Not Found" msgstr "" -#: ../../index.php:241 ../../mod/block.php:75 ../../mod/display.php:110 +#: ../../index.php:245 ../../mod/block.php:75 ../../mod/display.php:110 #: ../../mod/help.php:216 ../../mod/page.php:89 msgid "Page not found." msgstr "" @@ -4698,7 +4648,7 @@ msgid "" msgstr "" #: ../../mod/admin.php:495 -msgid "Expiration period in days for imported (matrix/network) content" +msgid "Expiration period in days for imported (grid/network) content" msgstr "" #: ../../mod/admin.php:495 @@ -4738,7 +4688,7 @@ msgstr "" msgid "on server" msgstr "" -#: ../../mod/admin.php:618 ../../mod/connections.php:267 +#: ../../mod/admin.php:618 ../../mod/connections.php:266 msgid "Status" msgstr "" @@ -4867,7 +4817,7 @@ msgstr "" msgid "No registrations." msgstr "" -#: ../../mod/admin.php:893 ../../mod/connedit.php:719 +#: ../../mod/admin.php:893 ../../mod/connections.php:271 msgid "Approve" msgstr "" @@ -5238,189 +5188,447 @@ msgstr "" msgid "Public" msgstr "" -#: ../../mod/chat.php:174 -msgid "Room not found" +#: ../../mod/chat.php:174 +msgid "Room not found" +msgstr "" + +#: ../../mod/chat.php:185 +msgid "Leave Room" +msgstr "" + +#: ../../mod/chat.php:186 +msgid "Delete This Room" +msgstr "" + +#: ../../mod/chat.php:187 +msgid "I am away right now" +msgstr "" + +#: ../../mod/chat.php:188 +msgid "I am online" +msgstr "" + +#: ../../mod/chat.php:190 +msgid "Bookmark this room" +msgstr "" + +#: ../../mod/chat.php:208 ../../mod/chat.php:231 +msgid "New Chatroom" +msgstr "" + +#: ../../mod/chat.php:209 +msgid "Chatroom Name" +msgstr "" + +#: ../../mod/chat.php:210 +msgid "Expiration of chats (minutes)" +msgstr "" + +#: ../../mod/chat.php:227 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "" + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "" + +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../mod/connections.php:52 ../../mod/connections.php:157 +#: ../../mod/connections.php:238 +msgid "Blocked" +msgstr "" + +#: ../../mod/connections.php:57 ../../mod/connections.php:164 +#: ../../mod/connections.php:237 +msgid "Ignored" +msgstr "" + +#: ../../mod/connections.php:62 ../../mod/connections.php:178 +#: ../../mod/connections.php:236 +msgid "Hidden" +msgstr "" + +#: ../../mod/connections.php:67 ../../mod/connections.php:171 +#: ../../mod/connections.php:235 +msgid "Archived" +msgstr "" + +#: ../../mod/connections.php:134 +msgid "New Connections" +msgstr "" + +#: ../../mod/connections.php:137 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../mod/connections.php:141 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "" + +#: ../../mod/connections.php:144 +msgid "Show all connections" +msgstr "" + +#: ../../mod/connections.php:160 +msgid "Only show blocked connections" +msgstr "" + +#: ../../mod/connections.php:167 +msgid "Only show ignored connections" +msgstr "" + +#: ../../mod/connections.php:174 +msgid "Only show archived connections" +msgstr "" + +#: ../../mod/connections.php:181 +msgid "Only show hidden connections" +msgstr "" + +#: ../../mod/connections.php:234 +msgid "Pending approval" +msgstr "" + +#: ../../mod/connections.php:250 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../mod/connections.php:251 +msgid "Edit connection" +msgstr "" + +#: ../../mod/connections.php:252 +msgid "Delete connection" +msgstr "" + +#: ../../mod/connections.php:261 +msgid "Channel address" +msgstr "" + +#: ../../mod/connections.php:263 +msgid "Network" +msgstr "" + +#: ../../mod/connections.php:268 +msgid "Connected" +msgstr "" + +#: ../../mod/connections.php:270 +msgid "Approve connection" +msgstr "" + +#: ../../mod/connections.php:272 +msgid "Recent activity" +msgstr "" + +#: ../../mod/connections.php:301 +msgid "Search your connections" +msgstr "" + +#: ../../mod/connections.php:302 +msgid "Connections search" +msgstr "" + +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "" + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../mod/connedit.php:223 +msgid "Connection updated." +msgstr "" + +#: ../../mod/connedit.php:225 +msgid "Failed to update connection record." +msgstr "" + +#: ../../mod/connedit.php:272 +msgid "is now connected to" +msgstr "" + +#: ../../mod/connedit.php:398 +msgid "Could not access address book record." +msgstr "" + +#: ../../mod/connedit.php:412 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../mod/connedit.php:427 ../../mod/connedit.php:436 +#: ../../mod/connedit.php:445 ../../mod/connedit.php:454 +#: ../../mod/connedit.php:467 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../mod/connedit.php:491 +msgid "Connection has been removed." +msgstr "" + +#: ../../mod/connedit.php:510 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../mod/connedit.php:514 +msgid "Refresh Permissions" +msgstr "" + +#: ../../mod/connedit.php:517 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../mod/connedit.php:521 +msgid "Recent Activity" +msgstr "" + +#: ../../mod/connedit.php:524 +msgid "View recent posts and comments" msgstr "" -#: ../../mod/chat.php:185 -msgid "Leave Room" +#: ../../mod/connedit.php:531 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../mod/chat.php:186 -msgid "Delete This Room" +#: ../../mod/connedit.php:532 +msgid "This connection is blocked!" msgstr "" -#: ../../mod/chat.php:187 -msgid "I am away right now" +#: ../../mod/connedit.php:536 +msgid "Unignore" msgstr "" -#: ../../mod/chat.php:188 -msgid "I am online" +#: ../../mod/connedit.php:536 ../../mod/notifications.php:51 +msgid "Ignore" msgstr "" -#: ../../mod/chat.php:190 -msgid "Bookmark this room" +#: ../../mod/connedit.php:539 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../mod/chat.php:208 ../../mod/chat.php:231 -msgid "New Chatroom" +#: ../../mod/connedit.php:540 +msgid "This connection is ignored!" msgstr "" -#: ../../mod/chat.php:209 -msgid "Chatroom Name" +#: ../../mod/connedit.php:544 +msgid "Unarchive" msgstr "" -#: ../../mod/chat.php:210 -msgid "Expiration of chats (minutes)" +#: ../../mod/connedit.php:544 +msgid "Archive" msgstr "" -#: ../../mod/chat.php:227 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../mod/connedit.php:547 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../mod/chatsvc.php:111 -msgid "Away" +#: ../../mod/connedit.php:548 +msgid "This connection is archived!" msgstr "" -#: ../../mod/chatsvc.php:115 -msgid "Online" +#: ../../mod/connedit.php:552 +msgid "Unhide" msgstr "" -#: ../../mod/common.php:10 -msgid "No channel." +#: ../../mod/connedit.php:552 +msgid "Hide" msgstr "" -#: ../../mod/common.php:39 -msgid "Common connections" +#: ../../mod/connedit.php:555 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../mod/common.php:44 -msgid "No connections in common." +#: ../../mod/connedit.php:556 +msgid "This connection is hidden!" msgstr "" -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" +#: ../../mod/connedit.php:563 +msgid "Delete this connection" msgstr "" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" +#: ../../mod/connedit.php:644 +msgid "Approve this connection" msgstr "" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" +#: ../../mod/connedit.php:644 +msgid "Accept connection to allow communication" msgstr "" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../mod/connedit.php:649 +msgid "Set Affinity" msgstr "" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../mod/connedit.php:652 +msgid "Set Profile" msgstr "" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../mod/connedit.php:655 +msgid "Set Affinity & Profile" msgstr "" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../mod/connedit.php:688 +msgid "none" msgstr "" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../mod/connedit.php:693 +msgid "Apply these permissions automatically" msgstr "" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" +#: ../../mod/connedit.php:695 +msgid "This connection's primary address is" msgstr "" -#: ../../mod/connections.php:52 ../../mod/connections.php:157 -#: ../../mod/connections.php:238 -msgid "Blocked" +#: ../../mod/connedit.php:696 +msgid "Available locations:" msgstr "" -#: ../../mod/connections.php:57 ../../mod/connections.php:164 -#: ../../mod/connections.php:237 -msgid "Ignored" +#: ../../mod/connedit.php:700 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../mod/connections.php:62 ../../mod/connections.php:178 -#: ../../mod/connections.php:236 -msgid "Hidden" +#: ../../mod/connedit.php:702 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../mod/connections.php:67 ../../mod/connections.php:171 -#: ../../mod/connections.php:235 -msgid "Archived" +#: ../../mod/connedit.php:704 +msgid "Slide to adjust your rating" msgstr "" -#: ../../mod/connections.php:134 -msgid "New Connections" +#: ../../mod/connedit.php:705 ../../mod/connedit.php:710 +msgid "Optionally explain your rating" msgstr "" -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" +#: ../../mod/connedit.php:707 +msgid "Custom Filter" msgstr "" -#: ../../mod/connections.php:141 ../../mod/profperm.php:139 -msgid "All Connections" +#: ../../mod/connedit.php:708 +msgid "Only import posts with this text" msgstr "" -#: ../../mod/connections.php:144 -msgid "Show all connections" +#: ../../mod/connedit.php:708 ../../mod/connedit.php:709 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../mod/connections.php:160 -msgid "Only show blocked connections" +#: ../../mod/connedit.php:709 +msgid "Do not import posts with this text" msgstr "" -#: ../../mod/connections.php:167 -msgid "Only show ignored connections" +#: ../../mod/connedit.php:711 +msgid "This information is public!" msgstr "" -#: ../../mod/connections.php:174 -msgid "Only show archived connections" +#: ../../mod/connedit.php:716 +msgid "Connection Pending Approval" msgstr "" -#: ../../mod/connections.php:181 -msgid "Only show hidden connections" +#: ../../mod/connedit.php:719 +msgid "inherited" msgstr "" -#: ../../mod/connections.php:234 -msgid "Pending" +#: ../../mod/connedit.php:721 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../mod/connections.php:250 -#, php-format -msgid "%1$s [%2$s]" +#: ../../mod/connedit.php:723 +msgid "Their Settings" msgstr "" -#: ../../mod/connections.php:251 -msgid "Edit connection" +#: ../../mod/connedit.php:724 +msgid "My Settings" msgstr "" -#: ../../mod/connections.php:252 -msgid "Delete connection" +#: ../../mod/connedit.php:726 +msgid "Individual Permissions" msgstr "" -#: ../../mod/connections.php:269 -msgid "Connected" +#: ../../mod/connedit.php:727 +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 "" -#: ../../mod/connections.php:298 -msgid "Search your connections" +#: ../../mod/connedit.php:728 +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 "" -#: ../../mod/connections.php:299 -msgid "Connections search" +#: ../../mod/connedit.php:729 +msgid "Last update:" msgstr "" #: ../../mod/dav.php:121 @@ -5919,7 +6127,7 @@ msgstr "" msgid "Help:" msgstr "" -#: ../../mod/help.php:237 +#: ../../mod/help.php:239 msgid "$Projectname Documentation" msgstr "" @@ -6051,7 +6259,7 @@ msgid "" "provide an export file." msgstr "" -#: ../../mod/import.php:516 ../../mod/import_items.php:121 +#: ../../mod/import.php:516 ../../mod/import_items.php:115 msgid "File to Upload" msgstr "" @@ -6094,15 +6302,15 @@ msgid "" "only once and leave this page open until finished." msgstr "" -#: ../../mod/import_items.php:101 +#: ../../mod/import_items.php:98 msgid "Import completed" msgstr "" -#: ../../mod/import_items.php:119 +#: ../../mod/import_items.php:113 msgid "Import Items" msgstr "" -#: ../../mod/import_items.php:120 +#: ../../mod/import_items.php:114 msgid "Use this form to import existing posts and content from an export file." msgstr "" @@ -6187,24 +6395,24 @@ msgstr "" msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/item.php:822 +#: ../../mod/item.php:824 msgid "Duplicate post suppressed." msgstr "" -#: ../../mod/item.php:953 +#: ../../mod/item.php:954 msgid "System error. Post not saved." msgstr "" -#: ../../mod/item.php:1220 +#: ../../mod/item.php:1221 msgid "Unable to obtain post information from database." msgstr "" -#: ../../mod/item.php:1227 +#: ../../mod/item.php:1228 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/item.php:1234 +#: ../../mod/item.php:1235 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -6315,111 +6523,42 @@ msgstr "" msgid "Syncing locations" msgstr "" -#: ../../mod/locs.php:101 -msgid "No locations found." -msgstr "" - -#: ../../mod/locs.php:112 -msgid "Manage Channel Locations" -msgstr "" - -#: ../../mod/locs.php:113 -msgid "Location (address)" -msgstr "" - -#: ../../mod/locs.php:114 -msgid "Primary Location" -msgstr "" - -#: ../../mod/locs.php:115 -msgid "Drop location" -msgstr "" - -#: ../../mod/locs.php:117 -msgid "Sync now" -msgstr "" - -#: ../../mod/locs.php:118 -msgid "Please wait several minutes between consecutive operations." -msgstr "" - -#: ../../mod/locs.php:119 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." -msgstr "" - -#: ../../mod/locs.php:120 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" +#: ../../mod/locs.php:101 +msgid "No locations found." msgstr "" -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" +#: ../../mod/locs.php:112 +msgid "Manage Channel Locations" msgstr "" -#: ../../mod/lostpass.php:90 -msgid "click here to login" +#: ../../mod/locs.php:113 +msgid "Location (address)" msgstr "" -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../mod/locs.php:114 +msgid "Primary Location" msgstr "" -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" +#: ../../mod/locs.php:115 +msgid "Drop location" msgstr "" -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" +#: ../../mod/locs.php:117 +msgid "Sync now" msgstr "" -#: ../../mod/lostpass.php:124 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../mod/locs.php:118 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../mod/lostpass.php:125 -msgid "Email Address" +#: ../../mod/locs.php:119 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../mod/lostpass.php:126 -msgid "Reset" +#: ../../mod/locs.php:120 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" #: ../../mod/magic.php:69 @@ -6868,10 +7007,6 @@ msgstr "" msgid "Discard" msgstr "" -#: ../../mod/notifications.php:51 ../../mod/connedit.php:536 -msgid "Ignore" -msgstr "" - #: ../../mod/notifications.php:94 ../../mod/notify.php:53 msgid "No more system notifications." msgstr "" @@ -6917,23 +7052,23 @@ msgid "" "to correctly use this feature." msgstr "" -#: ../../mod/pdledit.php:13 +#: ../../mod/pdledit.php:14 msgid "Layout updated." msgstr "" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +#: ../../mod/pdledit.php:29 ../../mod/pdledit.php:54 msgid "Edit System Page Description" msgstr "" -#: ../../mod/pdledit.php:48 +#: ../../mod/pdledit.php:49 msgid "Layout not found." msgstr "" -#: ../../mod/pdledit.php:54 +#: ../../mod/pdledit.php:55 msgid "Module Name:" msgstr "" -#: ../../mod/pdledit.php:55 +#: ../../mod/pdledit.php:56 msgid "Layout Help" msgstr "" @@ -7548,10 +7683,6 @@ msgstr "" msgid "No ratings" msgstr "" -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "" - #: ../../mod/ratings.php:100 msgid "Rating: " msgstr "" @@ -7990,7 +8121,7 @@ msgid "(comments displayed separately)" msgstr "" #: ../../mod/settings.php:849 -msgid "Use blog/list mode on matrix page" +msgid "Use blog/list mode on grid page" msgstr "" #: ../../mod/settings.php:850 @@ -8002,7 +8133,7 @@ msgid "click to expand content exceeding this height" msgstr "" #: ../../mod/settings.php:851 -msgid "Matrix page max height of content (in pixels)" +msgid "Grid page max height of content (in pixels)" msgstr "" #: ../../mod/settings.php:885 @@ -8228,7 +8359,7 @@ msgid "Show visual notifications including:" msgstr "" #: ../../mod/settings.php:1087 -msgid "Unseen matrix activity" +msgid "Unseen grid activity" msgstr "" #: ../../mod/settings.php:1088 @@ -8613,389 +8744,209 @@ msgstr "" #: ../../mod/setup.php:571 msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: ../../mod/setup.php:572 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "" - -#: ../../mod/setup.php:573 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/setup.php:576 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../mod/setup.php:590 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../mod/setup.php:591 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "" - -#: ../../mod/setup.php:592 ../../mod/setup.php:613 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../mod/setup.php:593 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../mod/setup.php:596 -#, php-format -msgid "%s is writable" -msgstr "" - -#: ../../mod/setup.php:612 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to " -"have write access to the store directory under the Red top level folder" -msgstr "" - -#: ../../mod/setup.php:616 -msgid "store is writable" -msgstr "" - -#: ../../mod/setup.php:649 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../mod/setup.php:650 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "" - -#: ../../mod/setup.php:651 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../mod/setup.php:652 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "" - -#: ../../mod/setup.php:653 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../mod/setup.php:654 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../mod/setup.php:656 -msgid "SSL certificate validation" -msgstr "" - -#: ../../mod/setup.php:662 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../mod/setup.php:665 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/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 "" - -#: ../../mod/setup.php:698 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/setup.php:732 -msgid "

What next

" -msgstr "" - -#: ../../mod/setup.php:733 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "" - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../mod/connedit.php:223 -msgid "Connection updated." -msgstr "" - -#: ../../mod/connedit.php:225 -msgid "Failed to update connection record." -msgstr "" - -#: ../../mod/connedit.php:272 -msgid "is now connected to" -msgstr "" - -#: ../../mod/connedit.php:398 -msgid "Could not access address book record." -msgstr "" - -#: ../../mod/connedit.php:412 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../mod/connedit.php:427 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:445 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:467 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../mod/connedit.php:491 -msgid "Connection has been removed." -msgstr "" - -#: ../../mod/connedit.php:510 -#, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../mod/connedit.php:514 -msgid "Refresh Permissions" -msgstr "" - -#: ../../mod/connedit.php:517 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../mod/connedit.php:521 -msgid "Recent Activity" -msgstr "" - -#: ../../mod/connedit.php:524 -msgid "View recent posts and comments" -msgstr "" - -#: ../../mod/connedit.php:531 -msgid "Block (or Unblock) all communications with this connection" -msgstr "" - -#: ../../mod/connedit.php:532 -msgid "This connection is blocked!" -msgstr "" - -#: ../../mod/connedit.php:536 -msgid "Unignore" -msgstr "" - -#: ../../mod/connedit.php:539 -msgid "Ignore (or Unignore) all inbound communications from this connection" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../mod/connedit.php:540 -msgid "This connection is ignored!" +#: ../../mod/setup.php:572 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../mod/connedit.php:544 -msgid "Unarchive" +#: ../../mod/setup.php:573 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../mod/connedit.php:544 -msgid "Archive" +#: ../../mod/setup.php:576 +msgid ".htconfig.php is writable" msgstr "" -#: ../../mod/connedit.php:547 +#: ../../mod/setup.php:590 msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../mod/connedit.php:548 -msgid "This connection is archived!" +#: ../../mod/setup.php:591 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." msgstr "" -#: ../../mod/connedit.php:552 -msgid "Unhide" +#: ../../mod/setup.php:592 ../../mod/setup.php:613 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../mod/connedit.php:552 -msgid "Hide" +#: ../../mod/setup.php:593 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../mod/connedit.php:555 -msgid "Hide or Unhide this connection from your other connections" +#: ../../mod/setup.php:596 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../mod/connedit.php:556 -msgid "This connection is hidden!" +#: ../../mod/setup.php:612 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to " +"have write access to the store directory under the Red top level folder" msgstr "" -#: ../../mod/connedit.php:563 -msgid "Delete this connection" +#: ../../mod/setup.php:616 +msgid "store is writable" msgstr "" -#: ../../mod/connedit.php:644 -msgid "Approve this connection" +#: ../../mod/setup.php:649 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../mod/connedit.php:644 -msgid "Accept connection to allow communication" +#: ../../mod/setup.php:650 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../mod/connedit.php:649 -msgid "Set Affinity" +#: ../../mod/setup.php:651 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../mod/connedit.php:652 -msgid "Set Profile" +#: ../../mod/setup.php:652 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../mod/connedit.php:655 -msgid "Set Affinity & Profile" +#: ../../mod/setup.php:653 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../mod/connedit.php:688 -msgid "none" +#: ../../mod/setup.php:654 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../mod/connedit.php:693 -msgid "Apply these permissions automatically" +#: ../../mod/setup.php:656 +msgid "SSL certificate validation" msgstr "" -#: ../../mod/connedit.php:695 -msgid "This connection's primary address is" +#: ../../mod/setup.php:662 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../mod/connedit.php:696 -msgid "Available locations:" +#: ../../mod/setup.php:665 +msgid "Url rewrite is working" msgstr "" -#: ../../mod/connedit.php:700 +#: ../../mod/setup.php:674 msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../mod/connedit.php:702 -msgid "Slide to adjust your degree of friendship" +#: ../../mod/setup.php:698 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../mod/connedit.php:704 -msgid "Slide to adjust your rating" +#: ../../mod/setup.php:732 +msgid "

What next

" msgstr "" -#: ../../mod/connedit.php:705 ../../mod/connedit.php:710 -msgid "Optionally explain your rating" +#: ../../mod/setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/connedit.php:707 -msgid "Custom Filter" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." msgstr "" -#: ../../mod/connedit.php:708 -msgid "Only import posts with this text" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../mod/connedit.php:708 ../../mod/connedit.php:709 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../mod/connedit.php:709 -msgid "Do not import posts with this text" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/connedit.php:711 -msgid "This information is public!" +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/connedit.php:716 -msgid "Connection Pending Approval" +#: ../../mod/lostpass.php:86 ../../boot.php:1516 +msgid "Password Reset" msgstr "" -#: ../../mod/connedit.php:717 -msgid "Connection Request" +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/connedit.php:718 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow " -"communication." +#: ../../mod/lostpass.php:88 +msgid "Your new password is" msgstr "" -#: ../../mod/connedit.php:720 -msgid "Approve Later" +#: ../../mod/lostpass.php:89 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../mod/connedit.php:723 -msgid "inherited" +#: ../../mod/lostpass.php:90 +msgid "click here to login" msgstr "" -#: ../../mod/connedit.php:725 -#, php-format +#: ../../mod/lostpass.php:91 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: ../../mod/connedit.php:727 -msgid "Their Settings" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../mod/connedit.php:728 -msgid "My Settings" +#: ../../mod/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../mod/connedit.php:730 -msgid "Individual Permissions" +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" msgstr "" -#: ../../mod/connedit.php:731 +#: ../../mod/lostpass.php:124 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." +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../mod/connedit.php:732 -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." +#: ../../mod/lostpass.php:125 +msgid "Email Address" msgstr "" -#: ../../mod/connedit.php:733 -msgid "Last update:" +#: ../../mod/lostpass.php:126 +msgid "Reset" msgstr "" #: ../../mod/sharedwithme.php:94 @@ -9287,6 +9238,10 @@ msgstr "" msgid "Visit %s's profile [%s]" msgstr "" +#: ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "" + #: ../../mod/viewsrc.php:40 msgid "Source of Item" msgstr "" @@ -9446,3 +9401,52 @@ msgstr "" #: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of followup author photos" msgstr "" + +#: ../../boot.php:1319 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:1322 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:1489 +msgid "" +"Create an account to access services and applications within the Hubzilla" +msgstr "" + +#: ../../boot.php:1511 +msgid "Password" +msgstr "" + +#: ../../boot.php:1512 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1515 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:2137 +msgid "toggle mobile" +msgstr "" + +#: ../../boot.php:2289 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "" + +#: ../../boot.php:2292 +#, php-format +msgid "[hubzilla] Website SSL error for %s" +msgstr "" + +#: ../../boot.php:2329 +msgid "Cron/Scheduled tasks not running." +msgstr "" + +#: ../../boot.php:2333 +#, php-format +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "" diff --git a/version.inc b/version.inc index 2e8e8f4ff..e558e2de2 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-01-21.1285H +2016-01-22.1286H -- cgit v1.2.3 From 945689d01c52871293c921329864ce3c5c7dece2 Mon Sep 17 00:00:00 2001 From: Jeroen van Riet Paap Date: Fri, 22 Jan 2016 16:25:00 +0100 Subject: doc --- doc/addons.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/addons.bb b/doc/addons.bb index 6152089f9..67282521f 100644 --- a/doc/addons.bb +++ b/doc/addons.bb @@ -15,7 +15,6 @@ [*] dirstats - show some interesting statistics generated by the driectory server [*] donate - provides a project donation page [*] dwpost - crosspost to Dreamwidth -[*] embedly - use the embedly (formerly ooehmbed) service to embed media from many providers [*] extcron - use an external cron service to run your hub's scheduled tasks [*] flattrwidget - provides a "Flattr Us" button [*] flip - create upside down text @@ -38,6 +37,7 @@ [*] moremoods - Additional mood options [*] morepokes - additional poke options (not safe for work) [*] msgfooter - provide legal or other text on each outgoing post +[*] noembed - use noembed.com as an addition to Hubzilla's native oembed functionality (currently broken) [*] nofed - prevent "federation" of channel posts, maintains all interaction on your site [*] nsabait - add random terrorism related hashtags to your posts [*] nsfw - Highly recommended plugin to collpase posts with inappropriate content -- cgit v1.2.3 From 7b73a689e1b8bc7de96b30f8080d6a7fb479e7ae Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 23 Jan 2016 16:25:38 -0800 Subject: provide option to use exec in proc_run --- boot.php | 8 ++++++-- mod/channel.php | 2 +- version.inc | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/boot.php b/boot.php index bb4bc977d..9d80eedb4 100755 --- a/boot.php +++ b/boot.php @@ -1723,8 +1723,12 @@ function proc_run($cmd){ $cmd = "cmd /c start \"title\" /D \"$cwd\" /b $cmdline"; proc_close(proc_open($cmd, array(), $foo)); } - else - proc_close(proc_open($cmdline ." &", array(), $foo)); + else { + if(get_config('system','proc_run_use_exec')) + exec($cmdline . ' > /dev/null &'); + else + proc_close(proc_open($cmdline ." &", array(), $foo)); + } } /** diff --git a/mod/channel.php b/mod/channel.php index 074017466..3b80e2cb8 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -163,6 +163,7 @@ function channel_content(&$a, $update = 0, $load = false) { $simple_update = ''; if(($update) && (! $load)) { + if ($mid) { $r = q("SELECT parent AS item_id from item where mid like '%s' and uid = %d $item_normal AND item_wall = 1 AND item_unseen = 1 $sql_extra limit 1", @@ -258,7 +259,6 @@ function channel_content(&$a, $update = 0, $load = false) { $items = array(); } - if((! $update) && (! $load)) { // This is ugly, but we can't pass the profile_uid through the session to the ajax updater, diff --git a/version.inc b/version.inc index e558e2de2..d884e64a2 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-01-22.1286H +2016-01-23.1287H -- cgit v1.2.3 From ae6ae881519446f1ce750e678b5871a5e3866d0e Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 23 Jan 2016 16:29:39 -0800 Subject: update hidden_configs with proc_run_use_exec --- doc/hidden_configs.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/hidden_configs.bb b/doc/hidden_configs.bb index c07d6ca01..5cb482cd9 100644 --- a/doc/hidden_configs.bb +++ b/doc/hidden_configs.bb @@ -90,6 +90,9 @@ This document assumes you're an administrator. Similar to block_public, except only blocks public access to search features. Useful for sites that want to be public, but keep getting hammered by search engines. + [b]system.proc_run_use_exec + If 1, use the exec system call in proc_run to run background tasks. By default + we use proc_open and proc_close. On some (currently rare) systems this does not work well. [b]system.paranoia[/b] As the pconfig, but on a site-wide basis. Can be overwritten by member settings. -- cgit v1.2.3 From 845945e70a56be3068ee2d09d7b917191a815609 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Sun, 24 Jan 2016 15:31:08 +0100 Subject: es-es+nl string update --- view/es-es/hmessages.po | 4422 ++++++++++++++++++++++++----------------------- view/es-es/hstrings.php | 531 +++--- view/nl/hmessages.po | 4418 +++++++++++++++++++++++----------------------- view/nl/hstrings.php | 535 +++--- 4 files changed, 4955 insertions(+), 4951 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 0ce5687fc..c8a63af9d 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -3,9 +3,7 @@ # This file is distributed under the same license as the Red package. # # Translators: -# Alfonso , 2015 -# JACOB MALDONADO , 2015 -# jeroenpraat , 2015 +# Alfonso , 2015 # Manuel Jiménez Friaza , 2015-2016 # Rafael, 2015 # tony baldwin , 2014 @@ -13,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-15 00:03-0800\n" -"PO-Revision-Date: 2016-01-16 14:43+0000\n" +"POT-Creation-Date: 2016-01-22 00:03-0800\n" +"PO-Revision-Date: 2016-01-24 08:19+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -35,110 +33,8 @@ msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../boot.php:1319 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "La actualización %s ha fallado. Mire el informe de errores." - -#: ../../boot.php:1322 -#, php-format -msgid "Update Error at %s" -msgstr "Error de actualización en %s" - -#: ../../boot.php:1489 -msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" - -#: ../../boot.php:1490 ../../include/nav.php:149 ../../mod/register.php:264 -msgid "Register" -msgstr "Registrarse" - -#: ../../boot.php:1507 ../../include/nav.php:82 ../../include/nav.php:114 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../boot.php:1508 ../../include/apps.php:131 ../../include/nav.php:111 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../boot.php:1510 ../../include/contact_selectors.php:79 -#: ../../mod/admin.php:891 ../../mod/admin.php:900 ../../mod/id.php:15 -#: ../../mod/id.php:16 -msgid "Email" -msgstr "Correo electrónico" - -#: ../../boot.php:1511 -msgid "Password" -msgstr "Contraseña" - -#: ../../boot.php:1512 -msgid "Remember me" -msgstr "Recordarme" - -#: ../../boot.php:1512 ../../include/dir_fns.php:141 -#: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 -#: ../../mod/admin.php:421 ../../mod/api.php:102 ../../mod/events.php:447 -#: ../../mod/events.php:448 ../../mod/events.php:457 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 -#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 -#: ../../mod/photos.php:626 ../../mod/removeme.php:60 -#: ../../mod/settings.php:577 ../../mod/connedit.php:644 -#: ../../mod/connedit.php:693 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 -msgid "No" -msgstr "No" - -#: ../../boot.php:1512 ../../include/dir_fns.php:141 -#: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 -#: ../../mod/admin.php:423 ../../mod/api.php:101 ../../mod/events.php:447 -#: ../../mod/events.php:448 ../../mod/events.php:457 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 -#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 -#: ../../mod/photos.php:626 ../../mod/removeme.php:60 -#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Yes" -msgstr "Sí" - -#: ../../boot.php:1515 -msgid "Forgot your password?" -msgstr "¿Olvidó su contraseña?" - -#: ../../boot.php:1516 ../../mod/lostpass.php:86 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../boot.php:2137 -msgid "toggle mobile" -msgstr "cambiar a modo móvil" - -#: ../../boot.php:2289 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." - -#: ../../boot.php:2292 -#, php-format -msgid "[hubzilla] Website SSL error for %s" -msgstr "[hubzilla] Error SSL del sitio web en %s" - -#: ../../boot.php:2329 -msgid "Cron/Scheduled tasks not running." -msgstr "Las tareas del Planificador/Cron no están funcionando." - -#: ../../boot.php:2330 ../../include/datetime.php:263 -msgid "never" -msgstr "nunca" - -#: ../../boot.php:2333 -#, php-format -msgid "[hubzilla] Cron tasks not running on %s" -msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" - -#: ../../include/Contact.php:101 ../../include/conversation.php:953 -#: ../../include/identity.php:947 ../../include/widgets.php:137 +#: ../../include/Contact.php:101 ../../include/conversation.php:961 +#: ../../include/identity.php:949 ../../include/widgets.php:137 #: ../../include/widgets.php:175 ../../mod/directory.php:318 #: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" @@ -176,22 +72,22 @@ msgstr "Mensaje Privado" #: ../../include/ItemObject.php:100 ../../include/RedDAV/RedBrowser.php:240 #: ../../include/apps.php:259 ../../include/menu.php:108 #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/blocks.php:153 ../../mod/connections.php:262 -#: ../../mod/connections.php:281 ../../mod/connections.php:301 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:176 -#: ../../mod/layouts.php:183 ../../mod/menu.php:108 ../../mod/settings.php:648 -#: ../../mod/thing.php:257 ../../mod/webpages.php:181 +#: ../../mod/blocks.php:153 ../../mod/connections.php:284 +#: ../../mod/connections.php:304 ../../mod/editblock.php:135 +#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112 +#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183 +#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:257 +#: ../../mod/webpages.php:181 msgid "Edit" msgstr "Editar" #: ../../include/ItemObject.php:120 ../../include/RedDAV/RedBrowser.php:241 #: ../../include/apps.php:260 ../../include/conversation.php:657 #: ../../mod/admin.php:895 ../../mod/admin.php:1054 ../../mod/blocks.php:155 -#: ../../mod/connections.php:263 ../../mod/editblock.php:181 -#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223 -#: ../../mod/group.php:173 ../../mod/photos.php:1126 -#: ../../mod/settings.php:649 ../../mod/connedit.php:560 +#: ../../mod/connections.php:259 ../../mod/connedit.php:560 +#: ../../mod/editblock.php:181 ../../mod/editlayout.php:179 +#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 +#: ../../mod/photos.php:1126 ../../mod/settings.php:649 #: ../../mod/thing.php:258 ../../mod/webpages.php:183 msgid "Delete" msgstr "Eliminar" @@ -229,13 +125,13 @@ msgid "I abstain" msgstr "Me abstengo" #: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1697 ../../mod/photos.php:1079 +#: ../../include/conversation.php:1707 ../../mod/photos.php:1079 #: ../../mod/photos.php:1091 msgid "View all" msgstr "Ver todo" -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1721 -#: ../../include/identity.php:1258 ../../include/taxonomy.php:414 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1731 +#: ../../include/taxonomy.php:414 ../../include/identity.php:1262 #: ../../mod/photos.php:1083 msgctxt "noun" msgid "Like" @@ -243,7 +139,7 @@ msgid_plural "Likes" msgstr[0] "Me gusta" msgstr[1] "Me gusta" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1724 +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1734 #: ../../mod/photos.php:1088 msgctxt "noun" msgid "Dislike" @@ -378,7 +274,7 @@ msgid "Close" msgstr "Cerrar" #: ../../include/ItemObject.php:389 ../../include/conversation.php:740 -#: ../../include/conversation.php:1227 ../../mod/editblock.php:150 +#: ../../include/conversation.php:1237 ../../mod/editblock.php:150 #: ../../mod/editlayout.php:148 ../../mod/editpost.php:129 #: ../../mod/editwebpage.php:190 ../../mod/photos.php:1026 msgid "Please wait" @@ -403,50 +299,50 @@ msgstr "Comentar" #: ../../mod/admin.php:453 ../../mod/admin.php:596 ../../mod/admin.php:888 #: ../../mod/admin.php:1052 ../../mod/admin.php:1228 ../../mod/admin.php:1423 #: ../../mod/admin.php:1508 ../../mod/appman.php:99 ../../mod/chat.php:184 -#: ../../mod/chat.php:213 ../../mod/connect.php:93 ../../mod/events.php:461 -#: ../../mod/events.php:658 ../../mod/filestorage.php:156 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/import.php:527 -#: ../../mod/import_items.php:122 ../../mod/invite.php:142 +#: ../../mod/chat.php:213 ../../mod/connect.php:93 ../../mod/connedit.php:720 +#: ../../mod/events.php:461 ../../mod/events.php:658 +#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 +#: ../../mod/group.php:81 ../../mod/import.php:527 +#: ../../mod/import_items.php:116 ../../mod/invite.php:142 #: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231 -#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:58 +#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59 #: ../../mod/photos.php:637 ../../mod/photos.php:1005 #: ../../mod/photos.php:1045 ../../mod/photos.php:1163 ../../mod/poke.php:171 #: ../../mod/profiles.php:675 ../../mod/rate.php:168 #: ../../mod/settings.php:586 ../../mod/settings.php:698 #: ../../mod/settings.php:726 ../../mod/settings.php:749 #: ../../mod/settings.php:834 ../../mod/settings.php:1023 -#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/connedit.php:724 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:313 -#: ../../mod/thing.php:359 ../../mod/xchan.php:11 -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/thing.php:313 ../../mod/thing.php:359 +#: ../../mod/xchan.php:11 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "Enviar" -#: ../../include/ItemObject.php:698 ../../include/conversation.php:1199 +#: ../../include/ItemObject.php:698 ../../include/conversation.php:1209 #: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 #: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177 msgid "Bold" msgstr "Negrita" -#: ../../include/ItemObject.php:699 ../../include/conversation.php:1200 +#: ../../include/ItemObject.php:699 ../../include/conversation.php:1210 #: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 #: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178 msgid "Italic" msgstr "Itálico " -#: ../../include/ItemObject.php:700 ../../include/conversation.php:1201 +#: ../../include/ItemObject.php:700 ../../include/conversation.php:1211 #: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 #: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179 msgid "Underline" msgstr "Subrayar" -#: ../../include/ItemObject.php:701 ../../include/conversation.php:1202 +#: ../../include/ItemObject.php:701 ../../include/conversation.php:1212 #: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 #: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180 msgid "Quote" msgstr "Citar" -#: ../../include/ItemObject.php:702 ../../include/conversation.php:1203 +#: ../../include/ItemObject.php:702 ../../include/conversation.php:1213 #: ../../mod/editblock.php:140 ../../mod/editlayout.php:139 #: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181 msgid "Code" @@ -464,7 +360,7 @@ msgstr "Insertar enlace" msgid "Video" msgstr "Vídeo" -#: ../../include/ItemObject.php:706 ../../include/conversation.php:1169 +#: ../../include/ItemObject.php:706 ../../include/conversation.php:1179 #: ../../include/page_widgets.php:40 ../../mod/editblock.php:171 #: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212 #: ../../mod/events.php:458 ../../mod/photos.php:1046 @@ -472,7 +368,7 @@ msgstr "Vídeo" msgid "Preview" msgstr "Previsualizar" -#: ../../include/ItemObject.php:709 ../../include/conversation.php:1257 +#: ../../include/ItemObject.php:709 ../../include/conversation.php:1267 #: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385 msgid "Encrypt text" msgstr "Cifrar texto" @@ -507,14 +403,14 @@ msgid "Schedule Outbox" msgstr "Programar bandeja de salida" #: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360 -#: ../../include/apps.php:415 ../../include/conversation.php:1027 -#: ../../include/widgets.php:1366 ../../mod/photos.php:754 +#: ../../include/apps.php:415 ../../include/conversation.php:1037 +#: ../../include/widgets.php:1368 ../../mod/photos.php:754 #: ../../mod/photos.php:1195 msgid "Unknown" msgstr "Desconocido" #: ../../include/RedDAV/RedBrowser.php:226 ../../include/apps.php:135 -#: ../../include/conversation.php:1629 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 ../../include/nav.php:93 #: ../../mod/fbrowser.php:109 msgid "Files" msgstr "Ficheros" @@ -536,7 +432,7 @@ msgid "Create" msgstr "Crear" #: ../../include/RedDAV/RedBrowser.php:231 -#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1379 +#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1381 #: ../../mod/photos.php:781 ../../mod/photos.php:1316 #: ../../mod/profile_photo.php:453 ../../mod/cover_photo.php:353 msgid "Upload" @@ -622,7 +518,7 @@ msgid "Registration request at %s" msgstr "Solicitud de registro en %s" #: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1659 +#: ../../include/account.php:404 ../../include/network.php:1660 msgid "Administrator" msgstr "Administrador" @@ -713,7 +609,7 @@ msgstr "Cronología pública" msgid "Site Admin" msgstr "Adminstrador del sitio" -#: ../../include/apps.php:129 ../../include/conversation.php:1655 +#: ../../include/apps.php:129 ../../include/conversation.php:1665 #: ../../include/nav.php:103 msgid "Bookmarks" msgstr "Marcadores" @@ -722,6 +618,10 @@ msgstr "Marcadores" msgid "Address Book" msgstr "Libreta de direcciones" +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1508 +msgid "Login" +msgstr "Iniciar sesión" + #: ../../include/apps.php:132 ../../include/nav.php:200 #: ../../mod/manage.php:160 msgid "Channel Manager" @@ -737,7 +637,7 @@ msgstr "Red" msgid "Settings" msgstr "Ajustes" -#: ../../include/apps.php:136 ../../include/conversation.php:1665 +#: ../../include/apps.php:136 ../../include/conversation.php:1675 #: ../../include/nav.php:107 ../../mod/webpages.php:178 msgid "Webpages" msgstr "Páginas web" @@ -746,12 +646,12 @@ msgstr "Páginas web" msgid "Channel Home" msgstr "Mi canal" -#: ../../include/apps.php:138 ../../include/identity.php:1232 -#: ../../include/identity.php:1349 ../../mod/profperm.php:112 +#: ../../include/apps.php:138 ../../include/identity.php:1236 +#: ../../include/identity.php:1353 ../../mod/profperm.php:112 msgid "Profile" msgstr "Perfil" -#: ../../include/apps.php:139 ../../include/conversation.php:1622 +#: ../../include/apps.php:139 ../../include/conversation.php:1632 #: ../../include/nav.php:92 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "Fotos" @@ -777,7 +677,7 @@ msgstr "Correo" msgid "Mood" msgstr "Estado de ánimo" -#: ../../include/apps.php:145 ../../include/conversation.php:956 +#: ../../include/apps.php:145 ../../include/conversation.php:965 msgid "Poke" msgstr "Toques y otras cosas" @@ -787,7 +687,7 @@ msgstr "Chat" #: ../../include/apps.php:147 ../../include/nav.php:159 #: ../../include/text.php:885 ../../include/text.php:897 -#: ../../mod/connections.php:297 ../../mod/search.php:40 +#: ../../mod/connections.php:300 ../../mod/search.php:40 msgid "Search" msgstr "Buscar" @@ -807,7 +707,7 @@ msgstr "Canal aleatorio" msgid "Invite" msgstr "Invitar" -#: ../../include/apps.php:152 ../../include/widgets.php:1252 +#: ../../include/apps.php:152 ../../include/widgets.php:1254 msgid "Features" msgstr "Funcionalidades" @@ -843,37 +743,37 @@ msgstr "Comprar" #: ../../include/attach.php:351 ../../include/attach.php:358 #: ../../include/attach.php:436 ../../include/attach.php:888 #: ../../include/attach.php:959 ../../include/attach.php:1111 -#: ../../include/chat.php:133 ../../include/items.php:4405 -#: ../../include/photos.php:29 ../../index.php:182 ../../index.php:367 +#: ../../include/chat.php:133 ../../include/photos.php:29 +#: ../../include/items.php:4407 ../../index.php:186 ../../index.php:371 #: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22 #: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 #: ../../mod/bookmarks.php:48 ../../mod/channel.php:100 #: ../../mod/channel.php:214 ../../mod/channel.php:254 ../../mod/chat.php:94 #: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/connections.php:29 -#: ../../mod/editblock.php:65 ../../mod/editlayout.php:63 -#: ../../mod/editlayout.php:87 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/events.php:260 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/group.php:9 ../../mod/id.php:71 ../../mod/invite.php:13 -#: ../../mod/invite.php:87 ../../mod/item.php:206 ../../mod/item.php:214 -#: ../../mod/item.php:1049 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/like.php:177 ../../mod/locs.php:83 -#: ../../mod/mail.php:126 ../../mod/manage.php:6 ../../mod/menu.php:74 -#: ../../mod/message.php:16 ../../mod/mitem.php:111 ../../mod/mood.php:112 -#: ../../mod/network.php:12 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/pdledit.php:21 -#: ../../mod/photos.php:70 ../../mod/poke.php:133 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/profile_photo.php:341 -#: ../../mod/profile_photo.php:354 ../../mod/profiles.php:198 -#: ../../mod/profiles.php:584 ../../mod/rate.php:111 ../../mod/register.php:73 -#: ../../mod/regmod.php:17 ../../mod/service_limits.php:7 -#: ../../mod/settings.php:568 ../../mod/setup.php:227 -#: ../../mod/connedit.php:355 ../../mod/sharedwithme.php:7 +#: ../../mod/connedit.php:355 ../../mod/editblock.php:65 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101 +#: ../../mod/editwebpage.php:125 ../../mod/events.php:260 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71 +#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:1050 ../../mod/layouts.php:69 +#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177 +#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6 +#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111 +#: ../../mod/mood.php:112 ../../mod/network.php:12 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/notifications.php:66 ../../mod/page.php:31 ../../mod/page.php:86 +#: ../../mod/pdledit.php:22 ../../mod/photos.php:70 ../../mod/poke.php:133 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/profile_photo.php:341 ../../mod/profile_photo.php:354 +#: ../../mod/profiles.php:198 ../../mod/profiles.php:584 +#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17 +#: ../../mod/service_limits.php:7 ../../mod/settings.php:568 +#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 #: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:271 #: ../../mod/thing.php:291 ../../mod/thing.php:328 #: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 @@ -980,7 +880,7 @@ msgid "Finishes:" msgstr "Finaliza:" #: ../../include/bb2diaspora.php:487 ../../include/event.php:52 -#: ../../include/identity.php:998 ../../include/text.php:1425 +#: ../../include/identity.php:1000 ../../include/text.php:1425 #: ../../mod/directory.php:304 msgid "Location:" msgstr "Ubicación:" @@ -1077,66 +977,6 @@ msgstr "La sala está llena." msgid "Default" msgstr "Predeterminado" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frecuentemente" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Cada hora" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dos veces al día" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diariamente" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensualmente" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - #: ../../include/contact_widgets.php:14 #, php-format msgid "%d invitation available" @@ -1164,7 +1004,7 @@ msgstr "Conectar/Seguir" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Ejemplos: José Fernández, Pesca" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:300 +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:303 #: ../../mod/directory.php:381 ../../mod/directory.php:386 msgid "Find" msgstr "Encontrar" @@ -1186,7 +1026,7 @@ msgstr "Invitar a amigos" msgid "Advanced example: name=fred and country=iceland" msgstr "Ejemplo avanzado: nombre=juan y país=españa" -#: ../../include/contact_widgets.php:57 ../../include/features.php:92 +#: ../../include/contact_widgets.php:57 ../../include/features.php:93 #: ../../include/widgets.php:304 msgid "Saved Folders" msgstr "Carpetas guardadas" @@ -1336,389 +1176,385 @@ msgstr "Cargando..." msgid "Delete Selected Items" msgstr "Eliminar elementos seleccionados" -#: ../../include/conversation.php:946 +#: ../../include/conversation.php:953 msgid "View Source" msgstr "Ver la fuente original de la publicación" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:954 msgid "Follow Thread" msgstr "Seguir este hilo" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:955 msgid "Unfollow Thread" msgstr "Dejar de seguir este hilo" -#: ../../include/conversation.php:949 -msgid "View Status" -msgstr "Ver mi estado actual" - -#: ../../include/conversation.php:950 ../../include/nav.php:86 +#: ../../include/conversation.php:959 ../../include/nav.php:86 #: ../../mod/connedit.php:507 msgid "View Profile" msgstr "Ver el perfil" -#: ../../include/conversation.php:951 -msgid "View Photos" -msgstr "Ver fotos" - -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:960 msgid "Activity/Posts" msgstr "Actividad y publicaciones" -#: ../../include/conversation.php:954 +#: ../../include/conversation.php:962 msgid "Edit Connection" msgstr "Editar conexión" -#: ../../include/conversation.php:955 -msgid "Send PM" -msgstr "Enviar un mensaje privado" +#: ../../include/conversation.php:963 +msgid "Message" +msgstr "Mensaje" -#: ../../include/conversation.php:1070 +#: ../../include/conversation.php:964 ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Valoraciones" + +#: ../../include/conversation.php:1080 #, php-format msgid "%s likes this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1070 +#: ../../include/conversation.php:1080 #, php-format msgid "%s doesn't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1074 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "a %2$d personas le gusta esto." msgstr[1] "A %2$d personas les gusta esto." -#: ../../include/conversation.php:1076 +#: ../../include/conversation.php:1086 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "a %2$d personas no les gusta esto." msgstr[1] "A %2$d personas no les gusta esto." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1092 msgid "and" msgstr "y" -#: ../../include/conversation.php:1085 +#: ../../include/conversation.php:1095 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", y %d persona más" msgstr[1] ", y %d personas más" -#: ../../include/conversation.php:1086 +#: ../../include/conversation.php:1096 #, php-format msgid "%s like this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1086 +#: ../../include/conversation.php:1096 #, php-format msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1154 +#: ../../include/conversation.php:1164 msgid "Visible to everybody" msgstr "Visible para cualquiera" -#: ../../include/conversation.php:1155 ../../mod/mail.php:202 +#: ../../include/conversation.php:1165 ../../mod/mail.php:202 #: ../../mod/mail.php:316 msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../include/conversation.php:1156 +#: ../../include/conversation.php:1166 msgid "Please enter a video link/URL:" msgstr "Por favor, introduzca un enlace de vídeo:" -#: ../../include/conversation.php:1157 +#: ../../include/conversation.php:1167 msgid "Please enter an audio link/URL:" msgstr "Por favor, introduzca un enlace de audio:" -#: ../../include/conversation.php:1158 +#: ../../include/conversation.php:1168 msgid "Tag term:" msgstr "Término de la etiqueta:" -#: ../../include/conversation.php:1159 ../../mod/filer.php:48 +#: ../../include/conversation.php:1169 ../../mod/filer.php:48 msgid "Save to Folder:" msgstr "Guardar en carpeta:" -#: ../../include/conversation.php:1160 +#: ../../include/conversation.php:1170 msgid "Where are you right now?" msgstr "¿Donde está ahora?" -#: ../../include/conversation.php:1161 ../../mod/editpost.php:56 +#: ../../include/conversation.php:1171 ../../mod/editpost.php:56 #: ../../mod/mail.php:203 ../../mod/mail.php:317 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Caduca YYYY-MM-DD HH:MM" -#: ../../include/conversation.php:1192 ../../mod/blocks.php:154 +#: ../../include/conversation.php:1202 ../../mod/blocks.php:154 #: ../../mod/layouts.php:184 ../../mod/photos.php:1025 #: ../../mod/webpages.php:182 msgid "Share" msgstr "Compartir" -#: ../../include/conversation.php:1194 +#: ../../include/conversation.php:1204 msgid "Page link name" msgstr "Nombre de enlace de página" -#: ../../include/conversation.php:1197 +#: ../../include/conversation.php:1207 msgid "Post as" msgstr "Publicar como" -#: ../../include/conversation.php:1204 ../../mod/editblock.php:142 +#: ../../include/conversation.php:1214 ../../mod/editblock.php:142 #: ../../mod/editlayout.php:140 ../../mod/editpost.php:118 #: ../../mod/editwebpage.php:182 msgid "Upload photo" msgstr "Subir foto" -#: ../../include/conversation.php:1205 +#: ../../include/conversation.php:1215 msgid "upload photo" msgstr "subir foto" -#: ../../include/conversation.php:1206 ../../mod/editblock.php:143 +#: ../../include/conversation.php:1216 ../../mod/editblock.php:143 #: ../../mod/editlayout.php:141 ../../mod/editpost.php:119 #: ../../mod/editwebpage.php:183 ../../mod/mail.php:248 ../../mod/mail.php:378 msgid "Attach file" msgstr "Adjuntar fichero" -#: ../../include/conversation.php:1207 +#: ../../include/conversation.php:1217 msgid "attach file" msgstr "adjuntar fichero" -#: ../../include/conversation.php:1208 ../../mod/editblock.php:144 +#: ../../include/conversation.php:1218 ../../mod/editblock.php:144 #: ../../mod/editlayout.php:142 ../../mod/editpost.php:120 #: ../../mod/editwebpage.php:184 ../../mod/mail.php:249 ../../mod/mail.php:379 msgid "Insert web link" msgstr "Insertar enlace web" -#: ../../include/conversation.php:1209 +#: ../../include/conversation.php:1219 msgid "web link" msgstr "enlace web" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1220 msgid "Insert video link" msgstr "Insertar enlace de vídeo" -#: ../../include/conversation.php:1211 +#: ../../include/conversation.php:1221 msgid "video link" msgstr "enlace de vídeo" -#: ../../include/conversation.php:1212 +#: ../../include/conversation.php:1222 msgid "Insert audio link" msgstr "Insertar enlace de audio" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1223 msgid "audio link" msgstr "enlace de audio" -#: ../../include/conversation.php:1214 ../../mod/editblock.php:148 +#: ../../include/conversation.php:1224 ../../mod/editblock.php:148 #: ../../mod/editlayout.php:146 ../../mod/editpost.php:124 #: ../../mod/editwebpage.php:188 msgid "Set your location" msgstr "Establecer su ubicación" -#: ../../include/conversation.php:1215 +#: ../../include/conversation.php:1225 msgid "set location" msgstr "establecer ubicación" -#: ../../include/conversation.php:1216 ../../mod/editpost.php:126 +#: ../../include/conversation.php:1226 ../../mod/editpost.php:126 msgid "Toggle voting" msgstr "Cambiar votación" -#: ../../include/conversation.php:1219 ../../mod/editblock.php:149 +#: ../../include/conversation.php:1229 ../../mod/editblock.php:149 #: ../../mod/editlayout.php:147 ../../mod/editpost.php:125 #: ../../mod/editwebpage.php:189 msgid "Clear browser location" msgstr "Eliminar los datos de ubicación del navegador" -#: ../../include/conversation.php:1220 +#: ../../include/conversation.php:1230 msgid "clear location" msgstr "borrar los datos de ubicación" -#: ../../include/conversation.php:1222 ../../mod/editblock.php:162 +#: ../../include/conversation.php:1232 ../../mod/editblock.php:162 #: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205 msgid "Title (optional)" msgstr "Título (opcional)" -#: ../../include/conversation.php:1226 ../../mod/editblock.php:165 +#: ../../include/conversation.php:1236 ../../mod/editblock.php:165 #: ../../mod/editlayout.php:163 ../../mod/editpost.php:143 #: ../../mod/editwebpage.php:207 msgid "Categories (optional, comma-separated list)" msgstr "Categorías (opcional, lista separada por comas)" -#: ../../include/conversation.php:1228 ../../mod/editblock.php:151 +#: ../../include/conversation.php:1238 ../../mod/editblock.php:151 #: ../../mod/editlayout.php:149 ../../mod/editpost.php:130 #: ../../mod/editwebpage.php:191 ../../mod/events.php:459 msgid "Permission settings" msgstr "Configuración de permisos" -#: ../../include/conversation.php:1229 +#: ../../include/conversation.php:1239 msgid "permissions" msgstr "permisos" -#: ../../include/conversation.php:1237 ../../mod/editblock.php:159 +#: ../../include/conversation.php:1247 ../../mod/editblock.php:159 #: ../../mod/editlayout.php:156 ../../mod/editpost.php:138 #: ../../mod/editwebpage.php:200 msgid "Public post" msgstr "Entrada pública" -#: ../../include/conversation.php:1239 ../../mod/editblock.php:166 +#: ../../include/conversation.php:1249 ../../mod/editblock.php:166 #: ../../mod/editlayout.php:164 ../../mod/editpost.php:144 #: ../../mod/editwebpage.php:208 msgid "Example: bob@example.com, mary@example.com" msgstr "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com" -#: ../../include/conversation.php:1252 ../../mod/editblock.php:176 +#: ../../include/conversation.php:1262 ../../mod/editblock.php:176 #: ../../mod/editlayout.php:173 ../../mod/editpost.php:155 #: ../../mod/editwebpage.php:217 ../../mod/mail.php:253 ../../mod/mail.php:383 msgid "Set expiration date" msgstr "Configurar fecha de caducidad" -#: ../../include/conversation.php:1255 +#: ../../include/conversation.php:1265 msgid "Set publish date" msgstr "Establecer la fecha de publicación" -#: ../../include/conversation.php:1259 ../../mod/editpost.php:159 +#: ../../include/conversation.php:1269 ../../mod/editpost.php:159 msgid "OK" msgstr "OK" -#: ../../include/conversation.php:1260 ../../mod/editpost.php:160 +#: ../../include/conversation.php:1270 ../../mod/editpost.php:160 #: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112 #: ../../mod/settings.php:587 ../../mod/settings.php:613 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "Cancelar" -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1513 msgid "Discover" msgstr "Descubrir" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1516 msgid "Imported public streams" msgstr "Contenidos públicos importados" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1521 msgid "Commented Order" msgstr "Comentarios recientes" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1524 msgid "Sort by Comment Date" msgstr "Ordenar por fecha de comentario" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1528 msgid "Posted Order" msgstr "Publicaciones recientes" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1531 msgid "Sort by Post Date" msgstr "Ordenar por fecha de publicación" -#: ../../include/conversation.php:1526 ../../include/widgets.php:95 +#: ../../include/conversation.php:1536 ../../include/widgets.php:95 msgid "Personal" msgstr "Personales" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1539 msgid "Posts that mention or involve you" msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/conversation.php:1535 ../../mod/connections.php:72 +#: ../../include/conversation.php:1545 ../../mod/connections.php:72 #: ../../mod/connections.php:82 ../../mod/menu.php:112 msgid "New" msgstr "Nuevas" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1548 msgid "Activity Stream - by date" msgstr "Contenido - por fecha" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1554 msgid "Starred" msgstr "Preferidas" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1557 msgid "Favourite Posts" msgstr "Publicaciones favoritas" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1564 msgid "Spam" msgstr "Correo basura" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1567 msgid "Posts flagged as SPAM" msgstr "Publicaciones marcadas como basura" -#: ../../include/conversation.php:1601 ../../mod/admin.php:1059 +#: ../../include/conversation.php:1611 ../../mod/admin.php:1059 msgid "Channel" msgstr "Canal" -#: ../../include/conversation.php:1604 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/conversation.php:1613 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Mi perfil" -#: ../../include/conversation.php:1616 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/conversation.php:1625 ../../include/photos.php:506 +#: ../../include/conversation.php:1635 ../../include/photos.php:506 msgid "Photo Albums" msgstr "Álbumes de fotos" -#: ../../include/conversation.php:1632 +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/conversation.php:1642 ../../include/conversation.php:1645 +#: ../../include/conversation.php:1652 ../../include/conversation.php:1655 msgid "Chatrooms" msgstr "Salas de chat" -#: ../../include/conversation.php:1658 +#: ../../include/conversation.php:1668 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/conversation.php:1668 +#: ../../include/conversation.php:1678 msgid "Manage Webpages" msgstr "Administrar páginas web" -#: ../../include/conversation.php:1727 +#: ../../include/conversation.php:1737 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1730 +#: ../../include/conversation.php:1740 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1733 +#: ../../include/conversation.php:1743 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1736 +#: ../../include/conversation.php:1746 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1739 +#: ../../include/conversation.php:1749 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:1742 +#: ../../include/conversation.php:1752 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -1738,6 +1574,10 @@ msgstr "AAAA-MM-DD o MM-DD" msgid "Required" msgstr "Obligatorio" +#: ../../include/datetime.php:263 ../../boot.php:2330 +msgid "never" +msgstr "nunca" + #: ../../include/datetime.php:269 msgid "less than a second ago" msgstr "hace un instante" @@ -1827,6 +1667,31 @@ msgstr "Opciones del directorio" msgid "Safe Mode" msgstr "Modo seguro" +#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 +#: ../../include/dir_fns.php:143 ../../mod/admin.php:421 ../../mod/api.php:102 +#: ../../mod/connedit.php:644 ../../mod/connedit.php:693 +#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 +#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 +#: ../../mod/photos.php:626 ../../mod/removeme.php:60 +#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1512 +msgid "No" +msgstr "No" + +#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 +#: ../../include/dir_fns.php:143 ../../mod/admin.php:423 ../../mod/api.php:101 +#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 +#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 +#: ../../mod/photos.php:626 ../../mod/removeme.php:60 +#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1512 +msgid "Yes" +msgstr "Sí" + #: ../../include/dir_fns.php:142 msgid "Public Forums Only" msgstr "Solo foros públicos" @@ -2055,1711 +1920,1740 @@ msgstr "En proceso" msgid "Cancelled" msgstr "Cancelado/a" -#: ../../include/features.php:45 -msgid "General Features" -msgstr "Funcionalidades básicas" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "El canal está bloqueado en este sitio." -#: ../../include/features.php:47 -msgid "Content Expiration" -msgstr "Caducidad del contenido" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Falta la dirección del canal." -#: ../../include/features.php:47 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." -#: ../../include/features.php:48 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." -#: ../../include/features.php:48 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" +#: ../../include/follow.php:153 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." -#: ../../include/features.php:49 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" +#: ../../include/follow.php:173 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." -#: ../../include/features.php:49 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" +#: ../../include/follow.php:199 +msgid "local account not found." +msgstr "No se ha encontrado la cuenta local." -#: ../../include/features.php:50 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" +#: ../../include/follow.php:224 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." -#: ../../include/features.php:50 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" +#: ../../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 "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." -#: ../../include/features.php:51 -msgid "Web Pages" -msgstr "Páginas web" +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Añadir nuevas conexiones a esta colección (privacidad del grupo)" -#: ../../include/features.php:51 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" - -#: ../../include/features.php:52 -msgid "Private Notes" -msgstr "Notas privadas" - -#: ../../include/features.php:52 -msgid "Enables a tool to store notes and reminders" -msgstr "Activar una herramienta para almacenar notas y recordatorios" - -#: ../../include/features.php:53 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" +#: ../../include/group.php:251 ../../mod/admin.php:900 +msgid "All Channels" +msgstr "Todos los canales" -#: ../../include/features.php:53 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" +#: ../../include/group.php:273 +msgid "edit" +msgstr "editar" -#: ../../include/features.php:54 -msgid "Photo Location" -msgstr "Ubicación de las fotos" +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Colecciones" -#: ../../include/features.php:54 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Editar colección" -#: ../../include/features.php:56 -msgid "Expert Mode" -msgstr "Modo de experto" +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Añadir nueva colección" -#: ../../include/features.php:56 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "El canal no se encuentra en ninguna colección" -#: ../../include/features.php:57 -msgid "Premium Channel" -msgstr "Canal premium" +#: ../../include/group.php:300 ../../include/widgets.php:275 +msgid "add" +msgstr "añadir" -#: ../../include/features.php:57 +#: ../../include/import.php:23 msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." -#: ../../include/features.php:62 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." -#: ../../include/features.php:64 -msgid "Use Markdown" -msgstr "Usar Markdown" +#: ../../include/import.php:80 ../../mod/import.php:139 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../include/features.php:64 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Permitir el uso de \"Markdown\" para formatear publicaciones" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "¿Borrar este elemento?" -#: ../../include/features.php:65 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] mostrar menos" -#: ../../include/features.php:65 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] expandir" -#: ../../include/features.php:66 ../../include/widgets.php:549 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Orígenes de los contenidos del canal" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] contraer" -#: ../../include/features.php:66 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Contraseña demasiado corta" -#: ../../include/features.php:67 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" -#: ../../include/features.php:67 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 +msgid "everybody" +msgstr "cualquiera" -#: ../../include/features.php:68 -msgid "Enable Voting Tools" -msgstr "Permitir entradas con votación" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Contraseña secreta" -#: ../../include/features.php:68 -msgid "Provide a class of post which others can vote on" -msgstr "Proveer una clase de publicación en la que otros puedan votar" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Pista de contraseña" -#: ../../include/features.php:69 -msgid "Delayed Posting" -msgstr "Publicación aplazada" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." -#: ../../include/features.php:69 -msgid "Allow posts to be published at a later date" -msgstr "Permitir mensajes que se publicarán en una fecha posterior" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "cerrar todo" -#: ../../include/features.php:70 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Prevenir entradas o comentarios duplicados" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" -#: ../../include/features.php:70 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Valorar este canal (esto es público)" -#: ../../include/features.php:76 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" +#: ../../include/js_strings.php:20 ../../mod/connedit.php:703 +#: ../../mod/rate.php:157 +msgid "Rating" +msgstr "Valoración" -#: ../../include/features.php:77 -msgid "Search by Date" -msgstr "Buscar por fecha" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Describir (opcional)" -#: ../../include/features.php:77 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Por favor, introduzca una dirección de enlace" -#: ../../include/features.php:78 -msgid "Collections Filter" -msgstr "Filtrado de colecciones" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" -#: ../../include/features.php:78 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Habilitar la muestra de entradas eligiendo colecciones" +#: ../../include/js_strings.php:25 ../../mod/events.php:452 +#: ../../mod/profiles.php:464 ../../mod/pubsites.php:28 +msgid "Location" +msgstr "Ubicación" -#: ../../include/features.php:79 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/features.php:79 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/features.php:80 -msgid "Network Personal Tab" -msgstr "Actividad personal" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "antes" -#: ../../include/features.php:80 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "desde ahora" -#: ../../include/features.php:81 -msgid "Network New Tab" -msgstr "Contenido nuevo" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "menos de un minuto" -#: ../../include/features.php:81 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "alrededor de un minuto" -#: ../../include/features.php:82 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minutos" -#: ../../include/features.php:82 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "alrededor de una hora" -#: ../../include/features.php:83 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "alrededor de %d horas" -#: ../../include/features.php:83 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un día" -#: ../../include/features.php:84 -msgid "Suggest Channels" -msgstr "Sugerir canales" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d días" -#: ../../include/features.php:84 -msgid "Show channel suggestions" -msgstr "Mostrar sugerencias de canales" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "alrededor de un mes" -#: ../../include/features.php:89 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d meses" -#: ../../include/features.php:90 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" - -#: ../../include/features.php:90 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "alrededor de un año" -#: ../../include/features.php:91 -msgid "Post Categories" -msgstr "Categorías de entradas" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d años" -#: ../../include/features.php:91 -msgid "Add categories to your posts" -msgstr "Añadir categorías a sus publicaciones" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/features.php:92 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/features.php:93 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" +#: ../../include/js_strings.php:45 ../../include/text.php:1183 +msgid "January" +msgstr "enero" -#: ../../include/features.php:93 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" +#: ../../include/js_strings.php:46 ../../include/text.php:1183 +msgid "February" +msgstr "febrero" -#: ../../include/features.php:94 -msgid "Star Posts" -msgstr "Entradas destacadas" +#: ../../include/js_strings.php:47 ../../include/text.php:1183 +msgid "March" +msgstr "marzo" -#: ../../include/features.php:94 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" +#: ../../include/js_strings.php:48 ../../include/text.php:1183 +msgid "April" +msgstr "abril" -#: ../../include/features.php:95 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mayo" -#: ../../include/features.php:95 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" +#: ../../include/js_strings.php:50 ../../include/text.php:1183 +msgid "June" +msgstr "junio" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." +#: ../../include/js_strings.php:51 ../../include/text.php:1183 +msgid "July" +msgstr "julio" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Falta la dirección del canal." +#: ../../include/js_strings.php:52 ../../include/text.php:1183 +msgid "August" +msgstr "agosto" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." +#: ../../include/js_strings.php:53 ../../include/text.php:1183 +msgid "September" +msgstr "septiembre" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." +#: ../../include/js_strings.php:54 ../../include/text.php:1183 +msgid "October" +msgstr "octubre" -#: ../../include/follow.php:153 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." +#: ../../include/js_strings.php:55 ../../include/text.php:1183 +msgid "November" +msgstr "noviembre" -#: ../../include/follow.php:173 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." +#: ../../include/js_strings.php:56 ../../include/text.php:1183 +msgid "December" +msgstr "diciembre" -#: ../../include/follow.php:199 -msgid "local account not found." -msgstr "No se ha encontrado la cuenta local." +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "ene" -#: ../../include/follow.php:224 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" -#: ../../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 "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mar" -#: ../../include/group.php:232 -msgid "Add new connections to this collection (privacy group)" -msgstr "Añadir nuevas conexiones a esta colección (privacidad del grupo)" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "abr" -#: ../../include/group.php:251 ../../mod/admin.php:900 -msgid "All Channels" -msgstr "Todos los canales" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "may" -#: ../../include/group.php:273 -msgid "edit" -msgstr "editar" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../include/group.php:295 -msgid "Collections" -msgstr "Colecciones" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../include/group.php:296 -msgid "Edit collection" -msgstr "Editar colección" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "ago" -#: ../../include/group.php:297 -msgid "Add new collection" -msgstr "Añadir nueva colección" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../include/group.php:298 -msgid "Channels not in any collection" -msgstr "El canal no se encuentra en ninguna colección" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "oct" -#: ../../include/group.php:300 ../../include/widgets.php:275 -msgid "add" -msgstr "añadir" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../include/identity.php:32 -msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dic" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Nombre vacío" +#: ../../include/js_strings.php:69 ../../include/text.php:1179 +msgid "Sunday" +msgstr "domingo" -#: ../../include/identity.php:69 -msgid "Name too long" -msgstr "Nombre demasiado largo" +#: ../../include/js_strings.php:70 ../../include/text.php:1179 +msgid "Monday" +msgstr "lunes" -#: ../../include/identity.php:181 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" +#: ../../include/js_strings.php:71 ../../include/text.php:1179 +msgid "Tuesday" +msgstr "martes" -#: ../../include/identity.php:193 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." +#: ../../include/js_strings.php:72 ../../include/text.php:1179 +msgid "Wednesday" +msgstr "miércoles" -#: ../../include/identity.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." +#: ../../include/js_strings.php:73 ../../include/text.php:1179 +msgid "Thursday" +msgstr "jueves" -#: ../../include/identity.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio." +#: ../../include/js_strings.php:74 ../../include/text.php:1179 +msgid "Friday" +msgstr "viernes" -#: ../../include/identity.php:288 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" +#: ../../include/js_strings.php:75 ../../include/text.php:1179 +msgid "Saturday" +msgstr "sábado" -#: ../../include/identity.php:346 -msgid "Default Profile" -msgstr "Perfil principal" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "dom" -#: ../../include/identity.php:390 ../../include/identity.php:391 -#: ../../include/identity.php:398 ../../include/profile_selectors.php:80 -#: ../../include/widgets.php:430 ../../mod/settings.php:338 -#: ../../mod/settings.php:342 ../../mod/settings.php:343 -#: ../../mod/settings.php:346 ../../mod/settings.php:357 -#: ../../mod/connedit.php:582 -msgid "Friends" -msgstr "Amigos/as" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "lun" -#: ../../include/identity.php:770 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "mar" -#: ../../include/identity.php:816 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 -#: ../../mod/profile.php:16 ../../mod/webpages.php:29 -msgid "Requested profile is not available." -msgstr "El perfil solicitado no está disponible." +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "mié" -#: ../../include/identity.php:960 ../../mod/profiles.php:782 -msgid "Change profile photo" -msgstr "Cambiar la foto del perfil" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "jue" -#: ../../include/identity.php:966 -msgid "Profiles" -msgstr "Perfiles" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vie" -#: ../../include/identity.php:966 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfiles" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "sáb" -#: ../../include/identity.php:967 ../../mod/profiles.php:783 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "hoy" -#: ../../include/identity.php:970 ../../include/nav.php:90 -msgid "Edit Profile" -msgstr "Editar el perfil" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mes" -#: ../../include/identity.php:982 ../../mod/profiles.php:794 -msgid "Profile Image" -msgstr "Imagen del perfil" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "semana" -#: ../../include/identity.php:985 -msgid "visible to everybody" -msgstr "visible para cualquiera" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "día" -#: ../../include/identity.php:986 ../../mod/profiles.php:677 -#: ../../mod/profiles.php:798 -msgid "Edit visibility" -msgstr "Editar visibilidad" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Todos los días" -#: ../../include/identity.php:1002 ../../include/identity.php:1242 -msgid "Gender:" -msgstr "Género:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." -#: ../../include/identity.php:1003 ../../include/identity.php:1286 -msgid "Status:" -msgstr "Estado:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" -#: ../../include/identity.php:1004 ../../include/identity.php:1297 -msgid "Homepage:" -msgstr "Página personal:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " -#: ../../include/identity.php:1005 -msgid "Online Now" -msgstr "Ahora en línea" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." -#: ../../include/identity.php:1089 ../../include/identity.php:1167 -#: ../../mod/ping.php:318 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1507 +msgid "Logout" +msgstr "Finalizar sesión" -#: ../../include/identity.php:1090 ../../include/identity.php:1168 -msgid "F d" -msgstr "d F" +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Finalizar esta sesión" -#: ../../include/identity.php:1135 ../../include/identity.php:1207 -#: ../../mod/ping.php:341 -msgid "[today]" -msgstr "[hoy]" +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Inicio" -#: ../../include/identity.php:1146 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" -#: ../../include/identity.php:1147 -msgid "Birthdays this week:" -msgstr "Cumpleaños de esta semana:" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Su página del perfil" -#: ../../include/identity.php:1200 -msgid "[No description]" -msgstr "[Sin descripción]" +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Editar perfiles" -#: ../../include/identity.php:1218 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" -#: ../../include/identity.php:1219 -msgid "Events this week:" -msgstr "Eventos de esta semana:" +#: ../../include/nav.php:90 ../../include/identity.php:972 +msgid "Edit Profile" +msgstr "Editar el perfil" -#: ../../include/identity.php:1240 ../../mod/settings.php:1029 -msgid "Full Name:" -msgstr "Nombre completo:" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Editar su perfil" -#: ../../include/identity.php:1247 -msgid "Like this channel" -msgstr "Me gusta este canal" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Sus fotos" -#: ../../include/identity.php:1271 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Sus ficheros" -#: ../../include/identity.php:1272 -msgid "j F" -msgstr "j F" +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Sus salas de chat" -#: ../../include/identity.php:1279 -msgid "Birthday:" -msgstr "Cumpleaños:" +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "Sus marcadores" -#: ../../include/identity.php:1283 ../../mod/directory.php:299 -msgid "Age:" -msgstr "Edad:" +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Sus páginas web" + +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Acceder" -#: ../../include/identity.php:1292 +#: ../../include/nav.php:128 #, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" -#: ../../include/identity.php:1295 ../../mod/profiles.php:699 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" -#: ../../include/identity.php:1299 ../../mod/directory.php:315 -#: ../../mod/profiles.php:701 -msgid "Hometown:" -msgstr "Ciudad de origen:" +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/identity.php:1301 -msgid "Tags:" -msgstr "Etiquetas:" +#: ../../include/nav.php:145 +msgid "Home Page" +msgstr "Página de inicio" -#: ../../include/identity.php:1303 ../../mod/profiles.php:702 -msgid "Political Views:" -msgstr "Posición política:" +#: ../../include/nav.php:149 ../../mod/register.php:264 ../../boot.php:1490 +msgid "Register" +msgstr "Registrarse" -#: ../../include/identity.php:1305 -msgid "Religion:" -msgstr "Religión:" +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Crear una cuenta" -#: ../../include/identity.php:1307 ../../mod/directory.php:317 -msgid "About:" -msgstr "Sobre mí:" +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Ayuda y documentación" -#: ../../include/identity.php:1309 -msgid "Hobbies/Interests:" -msgstr "Aficciones/Intereses:" +#: ../../include/nav.php:157 ../../include/widgets.php:92 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Aplicaciones" -#: ../../include/identity.php:1311 ../../mod/profiles.php:705 -msgid "Likes:" -msgstr "Me gusta:" +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" -#: ../../include/identity.php:1313 ../../mod/profiles.php:706 -msgid "Dislikes:" -msgstr "No me gusta:" +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" -#: ../../include/identity.php:1315 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Directorio de canales" -#: ../../include/identity.php:1317 -msgid "My other channels:" -msgstr "Mis otros canales:" +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "Mi red" -#: ../../include/identity.php:1319 -msgid "Musical interests:" -msgstr "Intereses musicales:" +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" -#: ../../include/identity.php:1321 -msgid "Books, literature:" -msgstr "Libros, literatura:" +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Mi canal" -#: ../../include/identity.php:1323 -msgid "Television:" -msgstr "Televisión:" +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" -#: ../../include/identity.php:1325 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine/danza/cultura/entretenimiento:" +#: ../../include/nav.php:181 ../../include/text.php:815 +#: ../../mod/connections.php:296 +msgid "Connections" +msgstr "Conexiones" -#: ../../include/identity.php:1327 -msgid "Love/Romance:" -msgstr "Vida sentimental/amorosa:" +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Avisos" -#: ../../include/identity.php:1329 -msgid "Work/employment:" -msgstr "Trabajo:" +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Notificaciones" -#: ../../include/identity.php:1331 -msgid "School/education:" -msgstr "Estudios:" +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" -#: ../../include/identity.php:1351 -msgid "Like this thing" -msgstr "Me gusta esto" +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" -#: ../../include/identity.php:1759 ../../mod/cover_photo.php:236 -msgid "cover photo" -msgstr "Imagen de portada del perfil" +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Correo privado" -#: ../../include/import.php:23 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" -#: ../../include/import.php:70 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" -#: ../../include/import.php:80 ../../mod/import.php:139 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." +#: ../../include/nav.php:191 ../../include/widgets.php:578 +msgid "Inbox" +msgstr "Bandeja de entrada" -#: ../../include/items.php:423 ../../index.php:366 ../../mod/dreport.php:6 -#: ../../mod/dreport.php:45 ../../mod/group.php:68 -#: ../../mod/import_items.php:114 ../../mod/like.php:280 -#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 -msgid "Permission denied" -msgstr "Permiso denegado" +#: ../../include/nav.php:192 ../../include/widgets.php:583 +msgid "Outbox" +msgstr "Bandeja de salida" -#: ../../include/items.php:1130 ../../include/items.php:1176 -msgid "(Unknown)" -msgstr "(Desconocido)" +#: ../../include/nav.php:193 ../../include/widgets.php:588 +msgid "New Message" +msgstr "Nuevo mensaje" -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Calendario de eventos" -#: ../../include/items.php:1375 -msgid "Visible to you only." -msgstr "Visible sólo para usted." +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Ver todos los eventos" -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que haya sido autenticado." +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" -#: ../../include/items.php:1381 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" -#: ../../include/items.php:1383 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." +#: ../../include/nav.php:210 ../../include/widgets.php:1281 +msgid "Admin" +msgstr "Administrador" -#: ../../include/items.php:1385 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" -#: ../../include/items.php:1387 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" -#: ../../include/items.php:4326 ../../mod/admin.php:135 -#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:86 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Elemento no encontrado." +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Espere por favor…" -#: ../../include/items.php:4838 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." -msgstr "Colección no encontrada." +#: ../../include/network.php:630 +msgid "view full size" +msgstr "Ver en el tamaño original" -#: ../../include/items.php:4854 -msgid "Collection is empty." -msgstr "La colección está vacía." +#: ../../include/network.php:1674 +msgid "No Subject" +msgstr "Sin asunto" -#: ../../include/items.php:4861 -#, php-format -msgid "Collection: %s" -msgstr "Colección: %s" +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "ha creado una nueva entrada" -#: ../../include/items.php:4871 ../../mod/connedit.php:692 +#: ../../include/notify.php:21 #, php-format -msgid "Connection: %s" -msgstr "Conexión: %s" +msgid "commented on %s's post" +msgstr "ha comentado la entrada de %s" -#: ../../include/items.php:4873 -msgid "Connection not found." -msgstr "Conexión no encontrada" +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Contenido incorporado" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "¿Borrar este elemento?" +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] mostrar menos" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nueva página" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] expandir" +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 +#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 +msgid "View" +msgstr "Ver" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] contraer" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Acciones" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Contraseña demasiado corta" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Título" -#: ../../include/js_strings.php:13 ../../mod/photos.php:41 -msgid "everybody" -msgstr "cualquiera" +#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 +#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:192 +msgid "Created" +msgstr "Creado" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Contraseña secreta" +#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 +#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:193 +msgid "Edited" +msgstr "Editado" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Pista de contraseña" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi actividad y publicaciones normales" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Puede verse mi perfil de canal predeterminado." -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "cerrar todo" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pueden verse mis conexiones" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pueden verse mi repositorio de ficheros y mis fotos" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valorar este canal (esto es público)" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" -#: ../../include/js_strings.php:20 ../../mod/rate.php:157 -#: ../../mod/connedit.php:703 -msgid "Rating" -msgstr "Valoración" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Me pueden enviar sus entradas y contenidos del canal" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Describir (opcional)" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Por favor, introduzca una dirección de enlace" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Se me pueden enviar mensajes privados" -#: ../../include/js_strings.php:25 ../../mod/events.php:452 -#: ../../mod/profiles.php:464 ../../mod/pubsites.php:28 -msgid "Location" -msgstr "Ubicación" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "antes" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "desde ahora" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "menos de un minuto" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "alrededor de un minuto" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "alrededor de una hora" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "alrededor de %d horas" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un día" +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d días" +#: ../../include/permissions.php:867 +msgid "Social Networking" +msgstr "Redes sociales" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "alrededor de un mes" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Público en su mayor parte" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d meses" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Restringido" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "alrededor de un año" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Privado" -#: ../../include/js_strings.php:41 +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Foro de discusión" + +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Republicar un \"feed\"" + +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Propósito especial" + +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Página para fans" + +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Repositorio de grupo" + +#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Otro" + +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Modo personalizado/experto" + +#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94 +#: ../../mod/photos.php:699 ../../mod/profile_photo.php:147 +#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: ../../include/photos.php:112 #, php-format -msgid "%d years" -msgstr "%d años" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/photos.php:119 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/photos.php:146 ../../mod/profile_photo.php:225 +#: ../../mod/cover_photo.php:164 +msgid "Unable to process image" +msgstr "No ha sido posible procesar la imagen" -#: ../../include/js_strings.php:45 ../../include/text.php:1183 -msgid "January" -msgstr "enero" +#: ../../include/photos.php:257 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../include/js_strings.php:46 ../../include/text.php:1183 -msgid "February" -msgstr "febrero" +#: ../../include/photos.php:297 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../include/js_strings.php:47 ../../include/text.php:1183 -msgid "March" -msgstr "marzo" +#: ../../include/photos.php:301 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../include/js_strings.php:48 ../../include/text.php:1183 -msgid "April" -msgstr "abril" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mayo" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 +msgid "Male" +msgstr "Hombre" -#: ../../include/js_strings.php:50 ../../include/text.php:1183 -msgid "June" -msgstr "junio" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 +msgid "Female" +msgstr "Mujer" -#: ../../include/js_strings.php:51 ../../include/text.php:1183 -msgid "July" -msgstr "julio" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Actualmente hombre" -#: ../../include/js_strings.php:52 ../../include/text.php:1183 -msgid "August" -msgstr "agosto" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Actualmente mujer" -#: ../../include/js_strings.php:53 ../../include/text.php:1183 -msgid "September" -msgstr "septiembre" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Generalmente hombre" -#: ../../include/js_strings.php:54 ../../include/text.php:1183 -msgid "October" -msgstr "octubre" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Generalmente mujer" -#: ../../include/js_strings.php:55 ../../include/text.php:1183 -msgid "November" -msgstr "noviembre" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgénero" -#: ../../include/js_strings.php:56 ../../include/text.php:1183 -msgid "December" -msgstr "diciembre" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersexual" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "ene" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexual" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mar" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutral" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "abr" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "No especificado" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "may" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso/a" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Hombres" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Mujeres" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "ago" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Homosexual" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbiana" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "oct" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Sin preferencias" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Bisexual" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dic" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../include/js_strings.php:69 ../../include/text.php:1179 -msgid "Sunday" -msgstr "domingo" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Casto/a" -#: ../../include/js_strings.php:70 ../../include/text.php:1179 -msgid "Monday" -msgstr "lunes" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Virgen" -#: ../../include/js_strings.php:71 ../../include/text.php:1179 -msgid "Tuesday" -msgstr "martes" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Fuera de lo común" -#: ../../include/js_strings.php:72 ../../include/text.php:1179 -msgid "Wednesday" -msgstr "miércoles" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetichista" -#: ../../include/js_strings.php:73 ../../include/text.php:1179 -msgid "Thursday" -msgstr "jueves" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Orgías" -#: ../../include/js_strings.php:74 ../../include/text.php:1179 -msgid "Friday" -msgstr "viernes" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Asexual" -#: ../../include/js_strings.php:75 ../../include/text.php:1179 -msgid "Saturday" -msgstr "sábado" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Soltero/a" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "dom" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Solo/a" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "lun" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Disponible" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "mar" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "No disponible" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "mié" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Enamorado/a" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "jue" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Apasionado/a" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vie" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Saliendo con alguien" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "sáb" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Infiel" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "hoy" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Con adicción al sexo" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mes" +#: ../../include/profile_selectors.php:80 ../../include/identity.php:390 +#: ../../include/identity.php:391 ../../include/identity.php:398 +#: ../../include/widgets.php:430 ../../mod/connedit.php:582 +#: ../../mod/settings.php:338 ../../mod/settings.php:342 +#: ../../mod/settings.php:343 ../../mod/settings.php:346 +#: ../../mod/settings.php:357 +msgid "Friends" +msgstr "Amigos/as" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "semana" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Amigos con algo extra" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "día" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Casual" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Todos los días" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Prometido/a" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Casado/a" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sin asunto]" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Casado/a en sueños" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Pareja" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Cohabitando" -#: ../../include/nav.php:82 ../../include/nav.php:114 -msgid "End this session" -msgstr "Finalizar esta sesión" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Matrimonio tradicional" -#: ../../include/nav.php:85 ../../include/nav.php:145 -msgid "Home" -msgstr "Inicio" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Felíz" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "No estoy buscando" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Su página del perfil" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Libertino" -#: ../../include/nav.php:88 -msgid "Edit Profiles" -msgstr "Editar perfiles" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Engañado/a" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Separado/a" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Editar su perfil" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Inestable" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Sus fotos" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Divorciado/a" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Sus ficheros" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Divorciado/a en sueños" -#: ../../include/nav.php:97 -msgid "Your chatrooms" -msgstr "Sus salas de chat" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Viudo/a" -#: ../../include/nav.php:103 -msgid "Your bookmarks" -msgstr "Sus marcadores" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Indeterminado" -#: ../../include/nav.php:107 -msgid "Your webpages" -msgstr "Sus páginas web" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Es complicado" -#: ../../include/nav.php:111 -msgid "Sign in" -msgstr "Acceder" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "No me importa" -#: ../../include/nav.php:128 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Pregúnteme" -#: ../../include/nav.php:131 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" +#: ../../include/security.php:384 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" -#: ../../include/nav.php:131 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" +#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 +msgid "Tags" +msgstr "Etiquetas" -#: ../../include/nav.php:145 -msgid "Home Page" -msgstr "Página de inicio" +#: ../../include/taxonomy.php:305 +msgid "Keywords" +msgstr "Palabras clave" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear una cuenta" +#: ../../include/taxonomy.php:326 +msgid "have" +msgstr "tener" -#: ../../include/nav.php:154 -msgid "Help and documentation" -msgstr "Ayuda y documentación" +#: ../../include/taxonomy.php:326 +msgid "has" +msgstr "tiene" -#: ../../include/nav.php:157 ../../include/widgets.php:92 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Aplicaciones" +#: ../../include/taxonomy.php:327 +msgid "want" +msgstr "quiero" -#: ../../include/nav.php:157 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" +#: ../../include/taxonomy.php:327 +msgid "wants" +msgstr "quiere" -#: ../../include/nav.php:159 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" +#: ../../include/taxonomy.php:328 +msgid "likes" +msgstr "gusta de" -#: ../../include/nav.php:162 -msgid "Channel Directory" -msgstr "Directorio de canales" +#: ../../include/taxonomy.php:329 +msgid "dislikes" +msgstr "no gusta de" -#: ../../include/nav.php:174 -msgid "Your grid" -msgstr "Mi red" +#: ../../include/zot.php:676 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" -#: ../../include/nav.php:175 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" +#: ../../include/zot.php:692 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/nav.php:177 -msgid "Channel home" -msgstr "Mi canal" +#: ../../include/zot.php:2268 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "No ha sido posible de verificar la firma del sitio para %s" -#: ../../include/nav.php:178 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" +#: ../../include/zot.php:3584 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" -#: ../../include/nav.php:181 ../../mod/connections.php:293 -msgid "Connections" -msgstr "Conexiones" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frecuentemente" -#: ../../include/nav.php:184 -msgid "Notices" -msgstr "Avisos" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Cada hora" -#: ../../include/nav.php:184 -msgid "Notifications" -msgstr "Notificaciones" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Dos veces al día" -#: ../../include/nav.php:185 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Diariamente" -#: ../../include/nav.php:186 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Semanalmente" -#: ../../include/nav.php:188 -msgid "Private mail" -msgstr "Correo privado" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensualmente" -#: ../../include/nav.php:189 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/nav.php:190 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/nav.php:191 ../../include/widgets.php:578 -msgid "Inbox" -msgstr "Bandeja de entrada" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/nav.php:192 ../../include/widgets.php:583 -msgid "Outbox" -msgstr "Bandeja de salida" +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:891 +#: ../../mod/admin.php:900 ../../mod/id.php:15 ../../mod/id.php:16 +#: ../../boot.php:1510 +msgid "Email" +msgstr "Correo electrónico" -#: ../../include/nav.php:193 ../../include/widgets.php:588 -msgid "New Message" -msgstr "Nuevo mensaje" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/nav.php:196 -msgid "Event Calendar" -msgstr "Calendario de eventos" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/nav.php:197 -msgid "See all events" -msgstr "Ver todos los eventos" +#: ../../include/contact_selectors.php:82 +msgid "Zot" +msgstr "Zot" -#: ../../include/nav.php:198 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/nav.php:200 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/nav.php:202 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/nav.php:210 ../../include/widgets.php:1279 -msgid "Admin" -msgstr "Administrador" +#: ../../include/features.php:45 +msgid "General Features" +msgstr "Funcionalidades básicas" -#: ../../include/nav.php:210 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" +#: ../../include/features.php:47 +msgid "Content Expiration" +msgstr "Caducidad del contenido" -#: ../../include/nav.php:246 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" +#: ../../include/features.php:47 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" -#: ../../include/nav.php:247 -msgid "Please wait..." -msgstr "Espere por favor…" +#: ../../include/features.php:48 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" -#: ../../include/network.php:630 -msgid "view full size" -msgstr "Ver en el tamaño original" +#: ../../include/features.php:48 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" -#: ../../include/network.php:1673 -msgid "No Subject" -msgstr "Sin asunto" +#: ../../include/features.php:49 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" -#: ../../include/notify.php:20 -msgid "created a new post" -msgstr "ha creado una nueva entrada" +#: ../../include/features.php:49 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/notify.php:21 -#, php-format -msgid "commented on %s's post" -msgstr "ha comentado la entrada de %s" +#: ../../include/features.php:50 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" + +#: ../../include/features.php:50 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../include/oembed.php:213 -msgid "Embedded content" -msgstr "Contenido incorporado" +#: ../../include/features.php:51 +msgid "Web Pages" +msgstr "Páginas web" -#: ../../include/oembed.php:222 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" +#: ../../include/features.php:51 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nueva página" +#: ../../include/features.php:52 +msgid "Hide Rating" +msgstr "Ocultar las valoraciones" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 -#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 -msgid "View" -msgstr "Ver" +#: ../../include/features.php:52 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Acciones" +#: ../../include/features.php:53 +msgid "Private Notes" +msgstr "Notas privadas" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Vínculo de la página" +#: ../../include/features.php:53 +msgid "Enables a tool to store notes and reminders" +msgstr "Activar una herramienta para almacenar notas y recordatorios" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Título" +#: ../../include/features.php:54 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" -#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 -#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:192 -msgid "Created" -msgstr "Creado" +#: ../../include/features.php:54 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 -#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:193 -msgid "Edited" -msgstr "Editado" +#: ../../include/features.php:55 +msgid "Photo Location" +msgstr "Ubicación de las fotos" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" +#: ../../include/features.php:55 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Puede verse mi perfil de canal predeterminado." +#: ../../include/features.php:57 +msgid "Expert Mode" +msgstr "Modo de experto" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Pueden verse mis conexiones" +#: ../../include/features.php:57 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Pueden verse mi repositorio de ficheros y mis fotos" +#: ../../include/features.php:58 +msgid "Premium Channel" +msgstr "Canal premium" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" +#: ../../include/features.php:58 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Me pueden enviar sus entradas y contenidos del canal" +#: ../../include/features.php:63 +msgid "Post Composition Features" +msgstr "Opciones para la redacción de entradas" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" +#: ../../include/features.php:65 +msgid "Use Markdown" +msgstr "Usar Markdown" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." +#: ../../include/features.php:65 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Permitir el uso de \"Markdown\" para formatear publicaciones" -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Se me pueden enviar mensajes privados" +#: ../../include/features.php:66 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" +#: ../../include/features.php:66 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" +#: ../../include/features.php:67 ../../include/widgets.php:549 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Orígenes de los contenidos del canal" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" +#: ../../include/features.php:67 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" +#: ../../include/features.php:68 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" +#: ../../include/features.php:68 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" +#: ../../include/features.php:69 +msgid "Enable Voting Tools" +msgstr "Permitir entradas con votación" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" +#: ../../include/features.php:69 +msgid "Provide a class of post which others can vote on" +msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" +#: ../../include/features.php:70 +msgid "Delayed Posting" +msgstr "Publicación aplazada" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" +#: ../../include/features.php:70 +msgid "Allow posts to be published at a later date" +msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" +#: ../../include/features.php:71 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/permissions.php:46 +#: ../../include/features.php:71 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../include/permissions.php:867 -msgid "Social Networking" -msgstr "Redes sociales" +#: ../../include/features.php:77 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -#: ../../include/permissions.php:869 -msgid "Mostly Public" -msgstr "Público en su mayor parte" +#: ../../include/features.php:78 +msgid "Search by Date" +msgstr "Buscar por fecha" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -#: ../../include/permissions.php:869 -msgid "Restricted" -msgstr "Restringido" +#: ../../include/features.php:78 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -msgid "Private" -msgstr "Privado" +#: ../../include/features.php:79 +msgid "Collections (Privacy Groups)" +msgstr "Colecciones (grupos privados)" -#: ../../include/permissions.php:868 -msgid "Community Forum" -msgstr "Foro de discusión" +#: ../../include/features.php:79 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Habilitar la muestra de entradas eligiendo colecciones" -#: ../../include/permissions.php:869 -msgid "Feed Republish" -msgstr "Republicar un \"feed\"" +#: ../../include/features.php:80 ../../include/widgets.php:274 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" -#: ../../include/permissions.php:870 -msgid "Special Purpose" -msgstr "Propósito especial" +#: ../../include/features.php:80 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/permissions.php:870 -msgid "Celebrity/Soapbox" -msgstr "Página para fans" +#: ../../include/features.php:81 +msgid "Network Personal Tab" +msgstr "Actividad personal" -#: ../../include/permissions.php:870 -msgid "Group Repository" -msgstr "Repositorio de grupo" +#: ../../include/features.php:81 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Otro" +#: ../../include/features.php:82 +msgid "Network New Tab" +msgstr "Contenido nuevo" -#: ../../include/permissions.php:871 -msgid "Custom/Expert Mode" -msgstr "Modo personalizado/experto" +#: ../../include/features.php:82 +msgid "Enable tab to display all new Network activity" +msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94 -#: ../../mod/photos.php:699 ../../mod/profile_photo.php:147 -#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379 -msgid "Profile Photos" -msgstr "Fotos del perfil" +#: ../../include/features.php:83 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" -#: ../../include/photos.php:112 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen excede el límite de %lu bytes del sitio" +#: ../../include/features.php:83 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/photos.php:119 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " +#: ../../include/features.php:84 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" -#: ../../include/photos.php:146 ../../mod/profile_photo.php:225 -#: ../../mod/cover_photo.php:164 -msgid "Unable to process image" -msgstr "No ha sido posible procesar la imagen" +#: ../../include/features.php:84 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/photos.php:257 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." +#: ../../include/features.php:85 +msgid "Suggest Channels" +msgstr "Sugerir canales" -#: ../../include/photos.php:297 -msgid "a new photo" -msgstr "una nueva foto" +#: ../../include/features.php:85 +msgid "Show channel suggestions" +msgstr "Mostrar sugerencias de canales" -#: ../../include/photos.php:301 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha publicado %2$s en %3$s" +#: ../../include/features.php:90 +msgid "Post/Comment Tools" +msgstr "Gestión de entradas y comentarios" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" +#: ../../include/features.php:91 +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Hombre" +#: ../../include/features.php:91 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Mujer" +#: ../../include/features.php:92 +msgid "Post Categories" +msgstr "Categorías de entradas" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actualmente hombre" +#: ../../include/features.php:92 +msgid "Add categories to your posts" +msgstr "Añadir categorías a sus publicaciones" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actualmente mujer" +#: ../../include/features.php:93 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Generalmente hombre" +#: ../../include/features.php:94 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Generalmente mujer" +#: ../../include/features.php:94 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgénero" +#: ../../include/features.php:95 +msgid "Star Posts" +msgstr "Entradas destacadas" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexual" +#: ../../include/features.php:95 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" +#: ../../include/features.php:96 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: ../../include/features.php:96 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutral" +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "No especificado" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Nombre vacío" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso/a" +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Nombre demasiado largo" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Hombres" +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Mujeres" +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homosexual" +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbiana" +#: ../../include/identity.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio." -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Sin preferencias" +#: ../../include/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Perfil principal" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../include/identity.php:772 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Casto/a" +#: ../../include/identity.php:818 ../../mod/achievements.php:11 +#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29 +#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 +#: ../../mod/profile.php:16 ../../mod/webpages.php:29 +msgid "Requested profile is not available." +msgstr "El perfil solicitado no está disponible." -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Virgen" +#: ../../include/identity.php:962 ../../mod/profiles.php:782 +msgid "Change profile photo" +msgstr "Cambiar la foto del perfil" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Fuera de lo común" +#: ../../include/identity.php:968 +msgid "Profiles" +msgstr "Perfiles" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetichista" +#: ../../include/identity.php:968 +msgid "Manage/edit profiles" +msgstr "Administrar/editar perfiles" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Orgías" +#: ../../include/identity.php:969 ../../mod/profiles.php:783 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Asexual" +#: ../../include/identity.php:984 ../../mod/profiles.php:794 +msgid "Profile Image" +msgstr "Imagen del perfil" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Soltero/a" +#: ../../include/identity.php:987 +msgid "visible to everybody" +msgstr "visible para cualquiera" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Solo/a" +#: ../../include/identity.php:988 ../../mod/profiles.php:677 +#: ../../mod/profiles.php:798 +msgid "Edit visibility" +msgstr "Editar visibilidad" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Disponible" +#: ../../include/identity.php:1004 ../../include/identity.php:1246 +msgid "Gender:" +msgstr "Género:" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "No disponible" +#: ../../include/identity.php:1005 ../../include/identity.php:1290 +msgid "Status:" +msgstr "Estado:" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Enamorado/a" +#: ../../include/identity.php:1006 ../../include/identity.php:1301 +msgid "Homepage:" +msgstr "Página personal:" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Apasionado/a" +#: ../../include/identity.php:1007 +msgid "Online Now" +msgstr "Ahora en línea" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Saliendo con alguien" +#: ../../include/identity.php:1093 ../../include/identity.php:1171 +#: ../../mod/ping.php:318 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Infiel" +#: ../../include/identity.php:1094 ../../include/identity.php:1172 +msgid "F d" +msgstr "d F" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Con adicción al sexo" +#: ../../include/identity.php:1139 ../../include/identity.php:1211 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[hoy]" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Amigos con algo extra" +#: ../../include/identity.php:1150 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Casual" +#: ../../include/identity.php:1151 +msgid "Birthdays this week:" +msgstr "Cumpleaños de esta semana:" + +#: ../../include/identity.php:1204 +msgid "[No description]" +msgstr "[Sin descripción]" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Prometido/a" +#: ../../include/identity.php:1222 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Casado/a" +#: ../../include/identity.php:1223 +msgid "Events this week:" +msgstr "Eventos de esta semana:" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Casado/a en sueños" +#: ../../include/identity.php:1244 ../../mod/settings.php:1029 +msgid "Full Name:" +msgstr "Nombre completo:" -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Pareja" +#: ../../include/identity.php:1251 +msgid "Like this channel" +msgstr "Me gusta este canal" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Cohabitando" +#: ../../include/identity.php:1275 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Matrimonio tradicional" +#: ../../include/identity.php:1276 +msgid "j F" +msgstr "j F" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Felíz" +#: ../../include/identity.php:1283 +msgid "Birthday:" +msgstr "Cumpleaños:" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "No estoy buscando" +#: ../../include/identity.php:1287 ../../mod/directory.php:299 +msgid "Age:" +msgstr "Edad:" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Libertino" +#: ../../include/identity.php:1296 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Engañado/a" +#: ../../include/identity.php:1299 ../../mod/profiles.php:699 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separado/a" +#: ../../include/identity.php:1303 ../../mod/directory.php:315 +#: ../../mod/profiles.php:701 +msgid "Hometown:" +msgstr "Ciudad de origen:" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Inestable" +#: ../../include/identity.php:1305 +msgid "Tags:" +msgstr "Etiquetas:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Divorciado/a" +#: ../../include/identity.php:1307 ../../mod/profiles.php:702 +msgid "Political Views:" +msgstr "Posición política:" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Divorciado/a en sueños" +#: ../../include/identity.php:1309 +msgid "Religion:" +msgstr "Religión:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Viudo/a" +#: ../../include/identity.php:1311 ../../mod/directory.php:317 +msgid "About:" +msgstr "Sobre mí:" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Indeterminado" +#: ../../include/identity.php:1313 +msgid "Hobbies/Interests:" +msgstr "Aficciones/Intereses:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Es complicado" +#: ../../include/identity.php:1315 ../../mod/profiles.php:705 +msgid "Likes:" +msgstr "Me gusta:" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "No me importa" +#: ../../include/identity.php:1317 ../../mod/profiles.php:706 +msgid "Dislikes:" +msgstr "No me gusta:" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Pregúnteme" +#: ../../include/identity.php:1319 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y redes sociales:" -#: ../../include/security.php:381 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" +#: ../../include/identity.php:1321 +msgid "My other channels:" +msgstr "Mis otros canales:" -#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 -msgid "Tags" -msgstr "Etiquetas" +#: ../../include/identity.php:1323 +msgid "Musical interests:" +msgstr "Intereses musicales:" -#: ../../include/taxonomy.php:305 -msgid "Keywords" -msgstr "Palabras clave" +#: ../../include/identity.php:1325 +msgid "Books, literature:" +msgstr "Libros, literatura:" -#: ../../include/taxonomy.php:326 -msgid "have" -msgstr "tener" +#: ../../include/identity.php:1327 +msgid "Television:" +msgstr "Televisión:" -#: ../../include/taxonomy.php:326 -msgid "has" -msgstr "tiene" +#: ../../include/identity.php:1329 +msgid "Film/dance/culture/entertainment:" +msgstr "Cine/danza/cultura/entretenimiento:" -#: ../../include/taxonomy.php:327 -msgid "want" -msgstr "quiero" +#: ../../include/identity.php:1331 +msgid "Love/Romance:" +msgstr "Vida sentimental/amorosa:" -#: ../../include/taxonomy.php:327 -msgid "wants" -msgstr "quiere" +#: ../../include/identity.php:1333 +msgid "Work/employment:" +msgstr "Trabajo:" -#: ../../include/taxonomy.php:328 -msgid "likes" -msgstr "gusta de" +#: ../../include/identity.php:1335 +msgid "School/education:" +msgstr "Estudios:" -#: ../../include/taxonomy.php:329 -msgid "dislikes" -msgstr "no gusta de" +#: ../../include/identity.php:1355 +msgid "Like this thing" +msgstr "Me gusta esto" + +#: ../../include/identity.php:1763 ../../mod/cover_photo.php:236 +msgid "cover photo" +msgstr "Imagen de portada del perfil" #: ../../include/text.php:394 msgid "prev" @@ -3789,16 +3683,10 @@ msgstr "más recientes" msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:815 +#: ../../include/text.php:828 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Conexión" -msgstr[1] "%d Conexiones" - -#: ../../include/text.php:828 ../../mod/viewconnections.php:101 -msgid "View Connections" -msgstr "Ver conexiones" +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" #: ../../include/text.php:886 ../../include/text.php:898 #: ../../include/widgets.php:192 ../../mod/admin.php:1568 @@ -4007,23 +3895,6 @@ msgstr "Formato gráfico" msgid "Pages" msgstr "Páginas" -#: ../../include/zot.php:676 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" - -#: ../../include/zot.php:692 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" - -#: ../../include/zot.php:2268 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la firma del sitio para %s" - -#: ../../include/zot.php:3584 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" - #: ../../include/widgets.php:93 msgid "System" msgstr "Sistema" @@ -4214,107 +4085,184 @@ msgstr "Salas de chat sugeridas" msgid "photo/image" msgstr "foto/imagen" -#: ../../include/widgets.php:1116 ../../include/widgets.php:1118 +#: ../../include/widgets.php:1115 +msgid "Rating Tools" +msgstr "Valoraciones" + +#: ../../include/widgets.php:1119 ../../include/widgets.php:1121 msgid "Rate Me" msgstr "Valorar este canal" -#: ../../include/widgets.php:1122 +#: ../../include/widgets.php:1124 msgid "View Ratings" msgstr "Mostrar las valoraciones" -#: ../../include/widgets.php:1133 +#: ../../include/widgets.php:1135 msgid "Public Hubs" msgstr "Servidores públicos" -#: ../../include/widgets.php:1181 +#: ../../include/widgets.php:1183 msgid "Forums" msgstr "Foros" -#: ../../include/widgets.php:1210 +#: ../../include/widgets.php:1212 msgid "Tasks" msgstr "Tareas" -#: ../../include/widgets.php:1219 +#: ../../include/widgets.php:1221 msgid "Documentation" msgstr "Documentación" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1223 msgid "Project/Site Information" msgstr "Información sobre el proyecto o sitio" -#: ../../include/widgets.php:1222 +#: ../../include/widgets.php:1224 msgid "For Members" msgstr "Para los usuarios" -#: ../../include/widgets.php:1223 +#: ../../include/widgets.php:1225 msgid "For Administrators" msgstr "Para los administradores" -#: ../../include/widgets.php:1224 +#: ../../include/widgets.php:1226 msgid "For Developers" msgstr "Para los desarrolladores" -#: ../../include/widgets.php:1249 ../../mod/admin.php:452 +#: ../../include/widgets.php:1251 ../../mod/admin.php:452 msgid "Site" msgstr "Sitio" -#: ../../include/widgets.php:1250 +#: ../../include/widgets.php:1252 msgid "Accounts" msgstr "Cuentas" -#: ../../include/widgets.php:1251 ../../mod/admin.php:1051 +#: ../../include/widgets.php:1253 ../../mod/admin.php:1051 msgid "Channels" msgstr "Canales" -#: ../../include/widgets.php:1253 ../../mod/admin.php:1166 +#: ../../include/widgets.php:1255 ../../mod/admin.php:1166 #: ../../mod/admin.php:1227 msgid "Plugins" msgstr "Extensiones" -#: ../../include/widgets.php:1254 ../../mod/admin.php:1388 +#: ../../include/widgets.php:1256 ../../mod/admin.php:1388 #: ../../mod/admin.php:1422 msgid "Themes" msgstr "Temas" -#: ../../include/widgets.php:1255 +#: ../../include/widgets.php:1257 msgid "Inspect queue" msgstr "Examinar la cola" -#: ../../include/widgets.php:1256 +#: ../../include/widgets.php:1258 msgid "Profile Config" msgstr "Ajustes del perfil" -#: ../../include/widgets.php:1257 +#: ../../include/widgets.php:1259 msgid "DB updates" msgstr "Actualizaciones de la base de datos" -#: ../../include/widgets.php:1275 ../../include/widgets.php:1281 +#: ../../include/widgets.php:1277 ../../include/widgets.php:1283 #: ../../mod/admin.php:1507 msgid "Logs" msgstr "Informes" -#: ../../include/widgets.php:1280 -msgid "Plugin Features" -msgstr "Extensiones" +#: ../../include/widgets.php:1282 +msgid "Plugin Features" +msgstr "Extensiones" + +#: ../../include/widgets.php:1284 +msgid "User registrations waiting for confirmation" +msgstr "Registros de usuarios pendientes de confirmación" + +#: ../../include/widgets.php:1362 ../../mod/photos.php:748 +#: ../../mod/photos.php:1283 +msgid "View Photo" +msgstr "Ver foto" + +#: ../../include/widgets.php:1379 ../../mod/photos.php:779 +msgid "Edit Album" +msgstr "Editar álbum" + +#: ../../include/items.php:423 ../../index.php:370 ../../mod/dreport.php:6 +#: ../../mod/dreport.php:45 ../../mod/group.php:68 +#: ../../mod/import_items.php:108 ../../mod/like.php:280 +#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 +msgid "Permission denied" +msgstr "Permiso denegado" + +#: ../../include/items.php:1130 ../../include/items.php:1176 +msgid "(Unknown)" +msgstr "(Desconocido)" + +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." + +#: ../../include/items.php:1375 +msgid "Visible to you only." +msgstr "Visible sólo para usted." + +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." + +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que haya sido autenticado." + +#: ../../include/items.php:1381 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." + +#: ../../include/items.php:1383 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." + +#: ../../include/items.php:1385 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." + +#: ../../include/items.php:1387 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." + +#: ../../include/items.php:4328 ../../mod/admin.php:135 +#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Elemento no encontrado." + +#: ../../include/items.php:4840 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Colección no encontrada." + +#: ../../include/items.php:4856 +msgid "Collection is empty." +msgstr "La colección está vacía." -#: ../../include/widgets.php:1282 -msgid "User registrations waiting for confirmation" -msgstr "Registros de usuarios pendientes de confirmación" +#: ../../include/items.php:4863 +#, php-format +msgid "Collection: %s" +msgstr "Colección: %s" -#: ../../include/widgets.php:1360 ../../mod/photos.php:748 -#: ../../mod/photos.php:1283 -msgid "View Photo" -msgstr "Ver foto" +#: ../../include/items.php:4873 ../../mod/connedit.php:692 +#, php-format +msgid "Connection: %s" +msgstr "Conexión: %s" -#: ../../include/widgets.php:1377 ../../mod/photos.php:779 -msgid "Edit Album" -msgstr "Editar álbum" +#: ../../include/items.php:4875 +msgid "Connection not found." +msgstr "Conexión no encontrada" -#: ../../index.php:238 ../../mod/help.php:213 +#: ../../index.php:242 ../../mod/help.php:213 msgid "Not Found" msgstr "No encontrado" -#: ../../index.php:241 ../../mod/block.php:75 ../../mod/display.php:110 +#: ../../index.php:245 ../../mod/block.php:75 ../../mod/display.php:110 #: ../../mod/help.php:216 ../../mod/page.php:89 msgid "Page not found." msgstr "Página no encontrada." @@ -4706,8 +4654,8 @@ msgid "" msgstr "Carga máxima del sistema antes de que los procesos de transmisión y sondeo se hayan retardado - por defecto, 50." #: ../../mod/admin.php:495 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Periodo de caducidad en días para el contenido importado (red)" +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Caducidad del contenido importado de otros sitios (en días)" #: ../../mod/admin.php:495 msgid "0 for no expiration of imported content" @@ -4746,7 +4694,7 @@ msgstr "por canal" msgid "on server" msgstr "en el servidor" -#: ../../mod/admin.php:618 ../../mod/connections.php:267 +#: ../../mod/admin.php:618 ../../mod/connections.php:266 msgid "Status" msgstr "Estado" @@ -4875,7 +4823,7 @@ msgstr "Fecha de solicitud" msgid "No registrations." msgstr "Sin registros." -#: ../../mod/admin.php:893 ../../mod/connedit.php:719 +#: ../../mod/admin.php:893 ../../mod/connections.php:271 msgid "Approve" msgstr "Aprobar" @@ -5307,129 +5255,388 @@ msgstr "Conexiones comunes" msgid "No connections in common." msgstr "Ninguna conexión en común." -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continuar" +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Continuar" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" + +#: ../../mod/connections.php:52 ../../mod/connections.php:157 +#: ../../mod/connections.php:238 +msgid "Blocked" +msgstr "Bloqueadas" + +#: ../../mod/connections.php:57 ../../mod/connections.php:164 +#: ../../mod/connections.php:237 +msgid "Ignored" +msgstr "Ignoradas" + +#: ../../mod/connections.php:62 ../../mod/connections.php:178 +#: ../../mod/connections.php:236 +msgid "Hidden" +msgstr "Ocultas" + +#: ../../mod/connections.php:67 ../../mod/connections.php:171 +#: ../../mod/connections.php:235 +msgid "Archived" +msgstr "Archivadas" + +#: ../../mod/connections.php:134 +msgid "New Connections" +msgstr "Nuevas conexiones" + +#: ../../mod/connections.php:137 +msgid "Show pending (new) connections" +msgstr "Mostrar conexiones (nuevas) pendientes" + +#: ../../mod/connections.php:141 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Todas las conexiones" + +#: ../../mod/connections.php:144 +msgid "Show all connections" +msgstr "Mostrar todas las conexiones" + +#: ../../mod/connections.php:160 +msgid "Only show blocked connections" +msgstr "Mostrar solo las conexiones bloqueadas" + +#: ../../mod/connections.php:167 +msgid "Only show ignored connections" +msgstr "Mostrar solo conexiones ignoradas" + +#: ../../mod/connections.php:174 +msgid "Only show archived connections" +msgstr "Mostrar solo las conexiones archivadas" + +#: ../../mod/connections.php:181 +msgid "Only show hidden connections" +msgstr "Mostrar solo las conexiones ocultas" + +#: ../../mod/connections.php:234 +msgid "Pending approval" +msgstr "Pendiente de aprobación" + +#: ../../mod/connections.php:250 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:251 +msgid "Edit connection" +msgstr "Editar conexión" + +#: ../../mod/connections.php:252 +msgid "Delete connection" +msgstr "Eliminar conexión" + +#: ../../mod/connections.php:261 +msgid "Channel address" +msgstr "Dirección del canal" + +#: ../../mod/connections.php:263 +msgid "Network" +msgstr "Red" + +#: ../../mod/connections.php:268 +msgid "Connected" +msgstr "Conectado/a" + +#: ../../mod/connections.php:270 +msgid "Approve connection" +msgstr "Aprobar esta conexión" + +#: ../../mod/connections.php:272 +msgid "Recent activity" +msgstr "Actividad reciente" + +#: ../../mod/connections.php:301 +msgid "Search your connections" +msgstr "Buscar sus conexiones" + +#: ../../mod/connections.php:302 +msgid "Connections search" +msgstr "Buscar conexiones" + +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "No se ha podido acceder al registro de contacto." + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "No se ha podido localizar el perfil seleccionado." + +#: ../../mod/connedit.php:223 +msgid "Connection updated." +msgstr "Conexión actualizada." + +#: ../../mod/connedit.php:225 +msgid "Failed to update connection record." +msgstr "Error al actualizar el registro de la conexión." + +#: ../../mod/connedit.php:272 +msgid "is now connected to" +msgstr "ahora está conectado/a" + +#: ../../mod/connedit.php:398 +msgid "Could not access address book record." +msgstr "No se pudo acceder al registro en su libreta de direcciones." + +#: ../../mod/connedit.php:412 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Recarga fallida - no se puede encontrar el canal en este momento." + +#: ../../mod/connedit.php:427 ../../mod/connedit.php:436 +#: ../../mod/connedit.php:445 ../../mod/connedit.php:454 +#: ../../mod/connedit.php:467 +msgid "Unable to set address book parameters." +msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." + +#: ../../mod/connedit.php:491 +msgid "Connection has been removed." +msgstr "La conexión ha sido eliminada." + +#: ../../mod/connedit.php:510 +#, php-format +msgid "View %s's profile" +msgstr "Ver el perfil de %s" + +#: ../../mod/connedit.php:514 +msgid "Refresh Permissions" +msgstr "Recargar los permisos" + +#: ../../mod/connedit.php:517 +msgid "Fetch updated permissions" +msgstr "Obtener los permisos actualizados" + +#: ../../mod/connedit.php:521 +msgid "Recent Activity" +msgstr "Actividad reciente" + +#: ../../mod/connedit.php:524 +msgid "View recent posts and comments" +msgstr "Ver publicaciones y comentarios recientes" + +#: ../../mod/connedit.php:531 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" + +#: ../../mod/connedit.php:532 +msgid "This connection is blocked!" +msgstr "¡Esta conexión está bloqueada!" + +#: ../../mod/connedit.php:536 +msgid "Unignore" +msgstr "Dejar de ignorar" + +#: ../../mod/connedit.php:536 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorar" + +#: ../../mod/connedit.php:539 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" + +#: ../../mod/connedit.php:540 +msgid "This connection is ignored!" +msgstr "¡Esta conexión es ignorada!" + +#: ../../mod/connedit.php:544 +msgid "Unarchive" +msgstr "Desarchivar" + +#: ../../mod/connedit.php:544 +msgid "Archive" +msgstr "Archivar" + +#: ../../mod/connedit.php:547 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" + +#: ../../mod/connedit.php:548 +msgid "This connection is archived!" +msgstr "¡Esta conexión esta archivada!" + +#: ../../mod/connedit.php:552 +msgid "Unhide" +msgstr "Mostrar" + +#: ../../mod/connedit.php:552 +msgid "Hide" +msgstr "Ocultar" + +#: ../../mod/connedit.php:555 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" + +#: ../../mod/connedit.php:556 +msgid "This connection is hidden!" +msgstr "¡Esta conexión está oculta!" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" +#: ../../mod/connedit.php:563 +msgid "Delete this connection" +msgstr "Eliminar esta conexión" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" +#: ../../mod/connedit.php:644 +msgid "Approve this connection" +msgstr "Aprobar esta conexión" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." +#: ../../mod/connedit.php:644 +msgid "Accept connection to allow communication" +msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" +#: ../../mod/connedit.php:649 +msgid "Set Affinity" +msgstr "Ajustar la afinidad" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" +#: ../../mod/connedit.php:652 +msgid "Set Profile" +msgstr "Ajustar el perfil" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." +#: ../../mod/connedit.php:655 +msgid "Set Affinity & Profile" +msgstr "Ajustar la afinidad y el perfil" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" +#: ../../mod/connedit.php:688 +msgid "none" +msgstr "-" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" +#: ../../mod/connedit.php:693 +msgid "Apply these permissions automatically" +msgstr "Aplicar estos permisos automaticamente" -#: ../../mod/connections.php:52 ../../mod/connections.php:157 -#: ../../mod/connections.php:238 -msgid "Blocked" -msgstr "Bloqueadas" +#: ../../mod/connedit.php:695 +msgid "This connection's primary address is" +msgstr "La dirección primaria de esta conexión es" -#: ../../mod/connections.php:57 ../../mod/connections.php:164 -#: ../../mod/connections.php:237 -msgid "Ignored" -msgstr "Ignoradas" +#: ../../mod/connedit.php:696 +msgid "Available locations:" +msgstr "Ubicaciones disponibles:" -#: ../../mod/connections.php:62 ../../mod/connections.php:178 -#: ../../mod/connections.php:236 -msgid "Hidden" -msgstr "Ocultas" +#: ../../mod/connedit.php:700 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../mod/connections.php:67 ../../mod/connections.php:171 -#: ../../mod/connections.php:235 -msgid "Archived" -msgstr "Archivadas" +#: ../../mod/connedit.php:702 +msgid "Slide to adjust your degree of friendship" +msgstr "Deslizar para ajustar el grado de amistad" -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Nuevas conexiones" +#: ../../mod/connedit.php:704 +msgid "Slide to adjust your rating" +msgstr "Deslizar para ajustar su valoración" -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" +#: ../../mod/connedit.php:705 ../../mod/connedit.php:710 +msgid "Optionally explain your rating" +msgstr "Opcionalmente, puede explicar su valoración" -#: ../../mod/connections.php:141 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Todas las conexiones" +#: ../../mod/connedit.php:707 +msgid "Custom Filter" +msgstr "Filtro personalizado" -#: ../../mod/connections.php:144 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" +#: ../../mod/connedit.php:708 +msgid "Only import posts with this text" +msgstr "Importar solo entradas que contengan este texto" -#: ../../mod/connections.php:160 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" +#: ../../mod/connedit.php:708 ../../mod/connedit.php:709 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" -#: ../../mod/connections.php:167 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" +#: ../../mod/connedit.php:709 +msgid "Do not import posts with this text" +msgstr "No importar entradas que contengan este texto" -#: ../../mod/connections.php:174 -msgid "Only show archived connections" -msgstr "Mostrar solo las conexiones archivadas" +#: ../../mod/connedit.php:711 +msgid "This information is public!" +msgstr "¡Esta información es pública!" -#: ../../mod/connections.php:181 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" +#: ../../mod/connedit.php:716 +msgid "Connection Pending Approval" +msgstr "Conexión pendiente de aprobación" -#: ../../mod/connections.php:234 -msgid "Pending" -msgstr "Pendiente" +#: ../../mod/connedit.php:719 +msgid "inherited" +msgstr "heredado" -#: ../../mod/connections.php:250 +#: ../../mod/connedit.php:721 #, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../mod/connections.php:251 -msgid "Edit connection" -msgstr "Editar conexión" +#: ../../mod/connedit.php:723 +msgid "Their Settings" +msgstr "Sus ajustes" -#: ../../mod/connections.php:252 -msgid "Delete connection" -msgstr "Eliminar conexión" +#: ../../mod/connedit.php:724 +msgid "My Settings" +msgstr "Mis ajustes" -#: ../../mod/connections.php:269 -msgid "Connected" -msgstr "Conectado/a" +#: ../../mod/connedit.php:726 +msgid "Individual Permissions" +msgstr "Permisos individuales" -#: ../../mod/connections.php:298 -msgid "Search your connections" -msgstr "Buscar sus conexiones" +#: ../../mod/connedit.php:727 +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 "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." -#: ../../mod/connections.php:299 -msgid "Connections search" -msgstr "Buscar conexiones" +#: ../../mod/connedit.php:728 +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 "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." + +#: ../../mod/connedit.php:729 +msgid "Last update:" +msgstr "Última actualización:" #: ../../mod/dav.php:121 msgid "$Projectname channel" @@ -5927,7 +6134,7 @@ msgstr "Búsqueda de Documentación" msgid "Help:" msgstr "Ayuda:" -#: ../../mod/help.php:237 +#: ../../mod/help.php:239 msgid "$Projectname Documentation" msgstr "Documentación de $Projectname" @@ -6059,7 +6266,7 @@ msgid "" "or provide an export file." msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." -#: ../../mod/import.php:516 ../../mod/import_items.php:121 +#: ../../mod/import.php:516 ../../mod/import_items.php:115 msgid "File to Upload" msgstr "Fichero para subir" @@ -6103,15 +6310,15 @@ msgid "" "only once and leave this page open until finished." msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." -#: ../../mod/import_items.php:101 +#: ../../mod/import_items.php:98 msgid "Import completed" msgstr "Importación completada" -#: ../../mod/import_items.php:119 +#: ../../mod/import_items.php:113 msgid "Import Items" msgstr "Importar elementos" -#: ../../mod/import_items.php:120 +#: ../../mod/import_items.php:114 msgid "" "Use this form to import existing posts and content from an export file." msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." @@ -6198,24 +6405,24 @@ msgstr "La entrada vacía ha sido desechada." msgid "Executable content type not permitted to this channel." msgstr "Contenido de tipo ejecutable no permitido en este canal." -#: ../../mod/item.php:822 +#: ../../mod/item.php:824 msgid "Duplicate post suppressed." msgstr "Se ha suprimido la entrada duplicada." -#: ../../mod/item.php:953 +#: ../../mod/item.php:954 msgid "System error. Post not saved." msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../mod/item.php:1220 +#: ../../mod/item.php:1221 msgid "Unable to obtain post information from database." msgstr "No ha sido posible obtener información de la entrada en la base de datos." -#: ../../mod/item.php:1227 +#: ../../mod/item.php:1228 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." -#: ../../mod/item.php:1234 +#: ../../mod/item.php:1235 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Ha alcanzado su límite de %1$.0f páginas web." @@ -6352,86 +6559,17 @@ msgstr "Sincronizar ahora" #: ../../mod/locs.php:118 msgid "Please wait several minutes between consecutive operations." -msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." - -#: ../../mod/locs.php:119 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." - -#: ../../mod/locs.php:120 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "pulse aquí para conectarse" - -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" +msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." -#: ../../mod/lostpass.php:124 +#: ../../mod/locs.php:119 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "Dirección de correo electrónico" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Reiniciar" +#: ../../mod/locs.php:120 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." #: ../../mod/magic.php:69 msgid "Hub not found." @@ -6876,10 +7014,6 @@ msgstr "Petición inválida del identificador." msgid "Discard" msgstr "Descartar" -#: ../../mod/notifications.php:51 ../../mod/connedit.php:536 -msgid "Ignore" -msgstr "Ignorar" - #: ../../mod/notifications.php:94 ../../mod/notify.php:53 msgid "No more system notifications." msgstr "No hay más notificaciones del sistema" @@ -6925,23 +7059,23 @@ msgid "" " to correctly use this feature." msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." -#: ../../mod/pdledit.php:13 +#: ../../mod/pdledit.php:14 msgid "Layout updated." msgstr "Formato actualizado" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +#: ../../mod/pdledit.php:29 ../../mod/pdledit.php:54 msgid "Edit System Page Description" msgstr "Editor del Sistema de Descripción de Páginas" -#: ../../mod/pdledit.php:48 +#: ../../mod/pdledit.php:49 msgid "Layout not found." msgstr "Formato no encontrado" -#: ../../mod/pdledit.php:54 +#: ../../mod/pdledit.php:55 msgid "Module Name:" msgstr "Nombre del módulo:" -#: ../../mod/pdledit.php:55 +#: ../../mod/pdledit.php:56 msgid "Layout Help" msgstr "Ayuda para el diseño de la página" @@ -7556,10 +7690,6 @@ msgstr "Opcionalmente puede explicar su valoración (esta información es públi msgid "No ratings" msgstr "Ninguna valoración" -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Valoraciones" - #: ../../mod/ratings.php:100 msgid "Rating: " msgstr "Valoración:" @@ -8000,8 +8130,8 @@ msgid "(comments displayed separately)" msgstr "(comentarios mostrados de forma separada)" #: ../../mod/settings.php:849 -msgid "Use blog/list mode on matrix page" -msgstr "Mostrar la red en modo blog/lista" +msgid "Use blog/list mode on grid page" +msgstr "Mostrar mi red en modo blog" #: ../../mod/settings.php:850 msgid "Channel page max height of content (in pixels)" @@ -8012,8 +8142,8 @@ msgid "click to expand content exceeding this height" msgstr "Pulsar para expandir el contenido que exceda de esta altura" #: ../../mod/settings.php:851 -msgid "Matrix page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página de su red (en píxeles)" +msgid "Grid page max height of content (in pixels)" +msgstr "Altura máxima del contenido de mi red (en píxeles)" #: ../../mod/settings.php:885 msgid "Nobody except yourself" @@ -8238,8 +8368,8 @@ msgid "Show visual notifications including:" msgstr "Mostrar notificaciones visuales que incluyan:" #: ../../mod/settings.php:1087 -msgid "Unseen matrix activity" -msgstr "Actividad no vista en la red" +msgid "Unseen grid activity" +msgstr "Nueva actividad en la red" #: ../../mod/settings.php:1088 msgid "Unseen channel activity" @@ -8663,353 +8793,172 @@ msgid "" msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." #: ../../mod/setup.php:593 -#, 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 "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." - -#: ../../mod/setup.php:596 -#, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" - -#: ../../mod/setup.php:612 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." - -#: ../../mod/setup.php:616 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" - -#: ../../mod/setup.php:649 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." - -#: ../../mod/setup.php:650 -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 "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." - -#: ../../mod/setup.php:651 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." - -#: ../../mod/setup.php:652 -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 "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." - -#: ../../mod/setup.php:653 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." - -#: ../../mod/setup.php:654 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." - -#: ../../mod/setup.php:656 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" - -#: ../../mod/setup.php:662 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" - -#: ../../mod/setup.php:665 -msgid "Url rewrite is working" -msgstr "La reescritura de las direcciones funciona correctamente" - -#: ../../mod/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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." - -#: ../../mod/setup.php:698 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." - -#: ../../mod/setup.php:732 -msgid "

What next

" -msgstr "

Siguiente paso

" - -#: ../../mod/setup.php:733 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." - -#: ../../mod/connedit.php:223 -msgid "Connection updated." -msgstr "Conexión actualizada." - -#: ../../mod/connedit.php:225 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." - -#: ../../mod/connedit.php:272 -msgid "is now connected to" -msgstr "ahora está conectado/a" - -#: ../../mod/connedit.php:398 -msgid "Could not access address book record." -msgstr "No se pudo acceder al registro en su libreta de direcciones." - -#: ../../mod/connedit.php:412 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar el canal en este momento." - -#: ../../mod/connedit.php:427 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:445 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:467 -msgid "Unable to set address book parameters." -msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." - -#: ../../mod/connedit.php:491 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." - -#: ../../mod/connedit.php:510 -#, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" - -#: ../../mod/connedit.php:514 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" - -#: ../../mod/connedit.php:517 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" - -#: ../../mod/connedit.php:521 -msgid "Recent Activity" -msgstr "Actividad reciente" - -#: ../../mod/connedit.php:524 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" - -#: ../../mod/connedit.php:531 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" - -#: ../../mod/connedit.php:532 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" - -#: ../../mod/connedit.php:536 -msgid "Unignore" -msgstr "Dejar de ignorar" - -#: ../../mod/connedit.php:539 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" - -#: ../../mod/connedit.php:540 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" - -#: ../../mod/connedit.php:544 -msgid "Unarchive" -msgstr "Desarchivar" - -#: ../../mod/connedit.php:544 -msgid "Archive" -msgstr "Archivar" - -#: ../../mod/connedit.php:547 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" - -#: ../../mod/connedit.php:548 -msgid "This connection is archived!" -msgstr "¡Esta conexión esta archivada!" - -#: ../../mod/connedit.php:552 -msgid "Unhide" -msgstr "Mostrar" - -#: ../../mod/connedit.php:552 -msgid "Hide" -msgstr "Ocultar" - -#: ../../mod/connedit.php:555 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" - -#: ../../mod/connedit.php:556 -msgid "This connection is hidden!" -msgstr "¡Esta conexión está oculta!" - -#: ../../mod/connedit.php:563 -msgid "Delete this connection" -msgstr "Eliminar esta conexión" - -#: ../../mod/connedit.php:644 -msgid "Approve this connection" -msgstr "Aprobar esta conexión" - -#: ../../mod/connedit.php:644 -msgid "Accept connection to allow communication" -msgstr "Aceptar la conexión para permitir la comunicación" - -#: ../../mod/connedit.php:649 -msgid "Set Affinity" -msgstr "Ajustar la afinidad" - -#: ../../mod/connedit.php:652 -msgid "Set Profile" -msgstr "Ajustar el perfil" - -#: ../../mod/connedit.php:655 -msgid "Set Affinity & Profile" -msgstr "Ajustar la afinidad y el perfil" +#, 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 "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../mod/connedit.php:688 -msgid "none" -msgstr "-" +#: ../../mod/setup.php:596 +#, php-format +msgid "%s is writable" +msgstr "%s tiene permisos de escritura" -#: ../../mod/connedit.php:693 -msgid "Apply these permissions automatically" -msgstr "Aplicar estos permisos automaticamente" +#: ../../mod/setup.php:612 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "Red guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." -#: ../../mod/connedit.php:695 -msgid "This connection's primary address is" -msgstr "La dirección primaria de esta conexión es" +#: ../../mod/setup.php:616 +msgid "store is writable" +msgstr "\"store\" tiene permisos de escritura" -#: ../../mod/connedit.php:696 -msgid "Available locations:" -msgstr "Ubicaciones disponibles:" +#: ../../mod/setup.php:649 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../mod/connedit.php:700 +#: ../../mod/setup.php:650 msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." +"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 "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../mod/connedit.php:702 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslizar para ajustar el grado de amistad" +#: ../../mod/setup.php:651 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../mod/connedit.php:704 -msgid "Slide to adjust your rating" -msgstr "Deslizar para ajustar su valoración" +#: ../../mod/setup.php:652 +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 "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../mod/connedit.php:705 ../../mod/connedit.php:710 -msgid "Optionally explain your rating" -msgstr "Opcionalmente, puede explicar su valoración" +#: ../../mod/setup.php:653 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../mod/connedit.php:707 -msgid "Custom Filter" -msgstr "Filtro personalizado" +#: ../../mod/setup.php:654 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../mod/connedit.php:708 -msgid "Only import posts with this text" -msgstr "Importar solo entradas que contengan este texto" +#: ../../mod/setup.php:656 +msgid "SSL certificate validation" +msgstr "validación del certificado SSL" -#: ../../mod/connedit.php:708 ../../mod/connedit.php:709 +#: ../../mod/setup.php:662 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../mod/connedit.php:709 -msgid "Do not import posts with this text" -msgstr "No importar entradas que contengan este texto" +#: ../../mod/setup.php:665 +msgid "Url rewrite is working" +msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../mod/connedit.php:711 -msgid "This information is public!" -msgstr "¡Esta información es pública!" +#: ../../mod/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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../mod/connedit.php:716 -msgid "Connection Pending Approval" -msgstr "Conexión pendiente de aprobación" +#: ../../mod/setup.php:698 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrado errores al crear las tablas de la base de datos." -#: ../../mod/connedit.php:717 -msgid "Connection Request" -msgstr "Solicitud de conexión" +#: ../../mod/setup.php:732 +msgid "

What next

" +msgstr "

Siguiente paso

" -#: ../../mod/connedit.php:718 -#, php-format +#: ../../mod/setup.php:733 msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación." +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." -#: ../../mod/connedit.php:720 -msgid "Approve Later" -msgstr "Aprobar más tarde" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." -#: ../../mod/connedit.php:723 -msgid "inherited" -msgstr "heredado" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." -#: ../../mod/connedit.php:725 +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" + +#: ../../mod/lostpass.php:40 #, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" + +#: ../../mod/lostpass.php:63 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../mod/connedit.php:727 -msgid "Their Settings" -msgstr "Sus ajustes" +#: ../../mod/lostpass.php:86 ../../boot.php:1516 +msgid "Password Reset" +msgstr "Restablecer la contraseña" -#: ../../mod/connedit.php:728 -msgid "My Settings" -msgstr "Mis ajustes" +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." -#: ../../mod/connedit.php:730 -msgid "Individual Permissions" -msgstr "Permisos individuales" +#: ../../mod/lostpass.php:88 +msgid "Your new password is" +msgstr "Su nueva contraseña es" -#: ../../mod/connedit.php:731 +#: ../../mod/lostpass.php:89 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" + +#: ../../mod/lostpass.php:90 +msgid "click here to login" +msgstr "pulse aquí para conectarse" + +#: ../../mod/lostpass.php:91 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 "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." + +#: ../../mod/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" + +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" -#: ../../mod/connedit.php:732 +#: ../../mod/lostpass.php:124 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 "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." -#: ../../mod/connedit.php:733 -msgid "Last update:" -msgstr "Última actualización:" +#: ../../mod/lostpass.php:125 +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: ../../mod/lostpass.php:126 +msgid "Reset" +msgstr "Reiniciar" #: ../../mod/sharedwithme.php:94 msgid "Files: shared with me" @@ -9301,6 +9250,10 @@ msgstr "Sin conexiones." msgid "Visit %s's profile [%s]" msgstr "Visitar el perfil de %s [%s]" +#: ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Ver conexiones" + #: ../../mod/viewsrc.php:40 msgid "Source of Item" msgstr "Origen del elemento" @@ -9460,3 +9413,52 @@ msgstr "Ajustar el tamaño de la foto del autor de la conversación" #: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" + +#: ../../boot.php:1319 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "La actualización %s ha fallado. Mire el informe de errores." + +#: ../../boot.php:1322 +#, php-format +msgid "Update Error at %s" +msgstr "Error de actualización en %s" + +#: ../../boot.php:1489 +msgid "" +"Create an account to access services and applications within the Hubzilla" +msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" + +#: ../../boot.php:1511 +msgid "Password" +msgstr "Contraseña" + +#: ../../boot.php:1512 +msgid "Remember me" +msgstr "Recordarme" + +#: ../../boot.php:1515 +msgid "Forgot your password?" +msgstr "¿Olvidó su contraseña?" + +#: ../../boot.php:2137 +msgid "toggle mobile" +msgstr "cambiar a modo móvil" + +#: ../../boot.php:2289 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." + +#: ../../boot.php:2292 +#, php-format +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] Error SSL del sitio web en %s" + +#: ../../boot.php:2329 +msgid "Cron/Scheduled tasks not running." +msgstr "Las tareas del Planificador/Cron no están funcionando." + +#: ../../boot.php:2333 +#, php-format +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 313683578..397d52f6a 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -7,25 +7,6 @@ function string_plural_select_es_es($n){ ; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; $a->strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; -$a->strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; -$a->strings["Update Error at %s"] = "Error de actualización en %s"; -$a->strings["Create an account to access services and applications within the Hubzilla"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla"; -$a->strings["Register"] = "Registrarse"; -$a->strings["Logout"] = "Finalizar sesión"; -$a->strings["Login"] = "Iniciar sesión"; -$a->strings["Email"] = "Correo electrónico"; -$a->strings["Password"] = "Contraseña"; -$a->strings["Remember me"] = "Recordarme"; -$a->strings["No"] = "No"; -$a->strings["Yes"] = "Sí"; -$a->strings["Forgot your password?"] = "¿Olvidó su contraseña?"; -$a->strings["Password Reset"] = "Restablecer la contraseña"; -$a->strings["toggle mobile"] = "cambiar a modo móvil"; -$a->strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."; -$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Error SSL del sitio web en %s"; -$a->strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando."; -$a->strings["never"] = "nunca"; -$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Las tareas de Cron no están funcionando en %s"; $a->strings["Connect"] = "Conectar"; $a->strings["New window"] = "Nueva ventana"; $a->strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; @@ -154,6 +135,7 @@ $a->strings["Public Timeline"] = "Cronología pública"; $a->strings["Site Admin"] = "Adminstrador del sitio"; $a->strings["Bookmarks"] = "Marcadores"; $a->strings["Address Book"] = "Libreta de direcciones"; +$a->strings["Login"] = "Iniciar sesión"; $a->strings["Channel Manager"] = "Administración de canales"; $a->strings["Grid"] = "Red"; $a->strings["Settings"] = "Ajustes"; @@ -225,21 +207,6 @@ $a->strings["Invalid room specifier."] = "Especificador de sala no válido."; $a->strings["Room not found."] = "Sala no encontrada."; $a->strings["Room is full"] = "La sala está llena."; $a->strings["Default"] = "Predeterminado"; -$a->strings["Frequently"] = "Frecuentemente"; -$a->strings["Hourly"] = "Cada hora"; -$a->strings["Twice daily"] = "Dos veces al día"; -$a->strings["Daily"] = "Diariamente"; -$a->strings["Weekly"] = "Semanalmente"; -$a->strings["Monthly"] = "Mensualmente"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; $a->strings["%d invitation available"] = array( 0 => "%d invitación pendiente", 1 => "%d invitaciones disponibles", @@ -291,12 +258,11 @@ $a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; $a->strings["View Source"] = "Ver la fuente original de la publicación"; $a->strings["Follow Thread"] = "Seguir este hilo"; $a->strings["Unfollow Thread"] = "Dejar de seguir este hilo"; -$a->strings["View Status"] = "Ver mi estado actual"; $a->strings["View Profile"] = "Ver el perfil"; -$a->strings["View Photos"] = "Ver fotos"; $a->strings["Activity/Posts"] = "Actividad y publicaciones"; $a->strings["Edit Connection"] = "Editar conexión"; -$a->strings["Send PM"] = "Enviar un mensaje privado"; +$a->strings["Message"] = "Mensaje"; +$a->strings["Ratings"] = "Valoraciones"; $a->strings["%s likes this."] = "A %s le gusta esto."; $a->strings["%s doesn't like this."] = "A %s no le gusta esto."; $a->strings["%2\$d people like this."] = array( @@ -400,6 +366,7 @@ $a->strings["__ctx:noun__ Abstain"] = array( $a->strings["Miscellaneous"] = "Varios"; $a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; $a->strings["Required"] = "Obligatorio"; +$a->strings["never"] = "nunca"; $a->strings["less than a second ago"] = "hace un instante"; $a->strings["year"] = "año"; $a->strings["years"] = "años"; @@ -421,6 +388,8 @@ $a->strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; $a->strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; $a->strings["Directory Options"] = "Opciones del directorio"; $a->strings["Safe Mode"] = "Modo seguro"; +$a->strings["No"] = "No"; +$a->strings["Yes"] = "Sí"; $a->strings["Public Forums Only"] = "Solo foros públicos"; $a->strings["This Website Only"] = "Solo este sitio web"; $a->strings["\$Projectname Notification"] = "Notificación de \$Projectname"; @@ -469,71 +438,6 @@ $a->strings["Needs Action"] = "Necesita de una intervención"; $a->strings["Completed"] = "Completado/a"; $a->strings["In Process"] = "En proceso"; $a->strings["Cancelled"] = "Cancelado/a"; -$a->strings["General Features"] = "Funcionalidades básicas"; -$a->strings["Content Expiration"] = "Caducidad del contenido"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; -$a->strings["Multiple Profiles"] = "Múltiples perfiles"; -$a->strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; -$a->strings["Advanced Profiles"] = "Perfiles avanzados"; -$a->strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; -$a->strings["Profile Import/Export"] = "Importar/Exportar perfil"; -$a->strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; -$a->strings["Web Pages"] = "Páginas web"; -$a->strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -$a->strings["Private Notes"] = "Notas privadas"; -$a->strings["Enables a tool to store notes and reminders"] = "Activar una herramienta para almacenar notas y recordatorios"; -$a->strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; -$a->strings["Photo Location"] = "Ubicación de las fotos"; -$a->strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; -$a->strings["Expert Mode"] = "Modo de experto"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; -$a->strings["Premium Channel"] = "Canal premium"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; -$a->strings["Post Composition Features"] = "Opciones para la redacción de entradas"; -$a->strings["Use Markdown"] = "Usar Markdown"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones"; -$a->strings["Large Photos"] = "Fotos de gran tamaño"; -$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; -$a->strings["Channel Sources"] = "Orígenes de los contenidos del canal"; -$a->strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; -$a->strings["Even More Encryption"] = "Más cifrado todavía"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; -$a->strings["Enable Voting Tools"] = "Permitir entradas con votación"; -$a->strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; -$a->strings["Delayed Posting"] = "Publicación aplazada"; -$a->strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; -$a->strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; -$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; -$a->strings["Network and Stream Filtering"] = "Filtrado del contenido"; -$a->strings["Search by Date"] = "Buscar por fecha"; -$a->strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; -$a->strings["Collections Filter"] = "Filtrado de colecciones"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Habilitar la muestra de entradas eligiendo colecciones"; -$a->strings["Saved Searches"] = "Búsquedas guardadas"; -$a->strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; -$a->strings["Network Personal Tab"] = "Actividad personal"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; -$a->strings["Network New Tab"] = "Contenido nuevo"; -$a->strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; -$a->strings["Affinity Tool"] = "Herramienta de afinidad"; -$a->strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; -$a->strings["Connection Filtering"] = "Filtrado de conexiones"; -$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -$a->strings["Suggest Channels"] = "Sugerir canales"; -$a->strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; -$a->strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -$a->strings["Community Tagging"] = "Etiquetas de la comunidad"; -$a->strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -$a->strings["Post Categories"] = "Categorías de entradas"; -$a->strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; -$a->strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -$a->strings["Dislike Posts"] = "Desagrado de publicaciones"; -$a->strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -$a->strings["Star Posts"] = "Entradas destacadas"; -$a->strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -$a->strings["Tag Cloud"] = "Nube de etiquetas"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; $a->strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; $a->strings["Channel location missing."] = "Falta la dirección del canal."; $a->strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; @@ -551,84 +455,9 @@ $a->strings["Edit collection"] = "Editar colección"; $a->strings["Add new collection"] = "Añadir nueva colección"; $a->strings["Channels not in any collection"] = "El canal no se encuentra en ninguna colección"; $a->strings["add"] = "añadir"; -$a->strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; -$a->strings["Empty name"] = "Nombre vacío"; -$a->strings["Name too long"] = "Nombre demasiado largo"; -$a->strings["No account identifier"] = "Ningún identificador de la cuenta"; -$a->strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -$a->strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio."; -$a->strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -$a->strings["Default Profile"] = "Perfil principal"; -$a->strings["Friends"] = "Amigos/as"; -$a->strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; -$a->strings["Change profile photo"] = "Cambiar la foto del perfil"; -$a->strings["Profiles"] = "Perfiles"; -$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; -$a->strings["Create New Profile"] = "Crear un nuevo perfil"; -$a->strings["Edit Profile"] = "Editar el perfil"; -$a->strings["Profile Image"] = "Imagen del perfil"; -$a->strings["visible to everybody"] = "visible para cualquiera"; -$a->strings["Edit visibility"] = "Editar visibilidad"; -$a->strings["Gender:"] = "Género:"; -$a->strings["Status:"] = "Estado:"; -$a->strings["Homepage:"] = "Página personal:"; -$a->strings["Online Now"] = "Ahora en línea"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[hoy]"; -$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; -$a->strings["Birthdays this week:"] = "Cumpleaños de esta semana:"; -$a->strings["[No description]"] = "[Sin descripción]"; -$a->strings["Event Reminders"] = "Recordatorios de eventos"; -$a->strings["Events this week:"] = "Eventos de esta semana:"; -$a->strings["Full Name:"] = "Nombre completo:"; -$a->strings["Like this channel"] = "Me gusta este canal"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Cumpleaños:"; -$a->strings["Age:"] = "Edad:"; -$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Orientación sexual:"; -$a->strings["Hometown:"] = "Ciudad de origen:"; -$a->strings["Tags:"] = "Etiquetas:"; -$a->strings["Political Views:"] = "Posición política:"; -$a->strings["Religion:"] = "Religión:"; -$a->strings["About:"] = "Sobre mí:"; -$a->strings["Hobbies/Interests:"] = "Aficciones/Intereses:"; -$a->strings["Likes:"] = "Me gusta:"; -$a->strings["Dislikes:"] = "No me gusta:"; -$a->strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -$a->strings["My other channels:"] = "Mis otros canales:"; -$a->strings["Musical interests:"] = "Intereses musicales:"; -$a->strings["Books, literature:"] = "Libros, literatura:"; -$a->strings["Television:"] = "Televisión:"; -$a->strings["Film/dance/culture/entertainment:"] = "Cine/danza/cultura/entretenimiento:"; -$a->strings["Love/Romance:"] = "Vida sentimental/amorosa:"; -$a->strings["Work/employment:"] = "Trabajo:"; -$a->strings["School/education:"] = "Estudios:"; -$a->strings["Like this thing"] = "Me gusta esto"; -$a->strings["cover photo"] = "Imagen de portada del perfil"; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; $a->strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; $a->strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -$a->strings["Permission denied"] = "Permiso denegado"; -$a->strings["(Unknown)"] = "(Desconocido)"; -$a->strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -$a->strings["Visible to you only."] = "Visible sólo para usted."; -$a->strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -$a->strings["Visible to anybody authenticated."] = "Visible para cualquiera que haya sido autenticado."; -$a->strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -$a->strings["Visible to all connections."] = "Visible para todas las conexiones."; -$a->strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -$a->strings["Visible to specific connections."] = "Visible para conexiones específicas."; -$a->strings["Item not found."] = "Elemento no encontrado."; -$a->strings["Collection not found."] = "Colección no encontrada."; -$a->strings["Collection is empty."] = "La colección está vacía."; -$a->strings["Collection: %s"] = "Colección: %s"; -$a->strings["Connection: %s"] = "Conexión: %s"; -$a->strings["Connection not found."] = "Conexión no encontrada"; $a->strings["Delete this item?"] = "¿Borrar este elemento?"; $a->strings["[-] show less"] = "[-] mostrar menos"; $a->strings["[+] expand"] = "[+] expandir"; @@ -711,12 +540,14 @@ $a->strings["No recipient provided."] = "No se ha especificado ningún destinata $a->strings["[no subject]"] = "[sin asunto]"; $a->strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; $a->strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; +$a->strings["Logout"] = "Finalizar sesión"; $a->strings["End this session"] = "Finalizar esta sesión"; $a->strings["Home"] = "Inicio"; $a->strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; $a->strings["Your profile page"] = "Su página del perfil"; $a->strings["Edit Profiles"] = "Editar perfiles"; $a->strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +$a->strings["Edit Profile"] = "Editar el perfil"; $a->strings["Edit your profile"] = "Editar su perfil"; $a->strings["Your photos"] = "Sus fotos"; $a->strings["Your files"] = "Sus ficheros"; @@ -728,6 +559,7 @@ $a->strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; $a->strings["Remote authentication"] = "Acceder desde su servidor"; $a->strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; $a->strings["Home Page"] = "Página de inicio"; +$a->strings["Register"] = "Registrarse"; $a->strings["Create an account"] = "Crear una cuenta"; $a->strings["Help and documentation"] = "Ayuda y documentación"; $a->strings["Apps"] = "Aplicaciones"; @@ -845,6 +677,7 @@ $a->strings["Infatuated"] = "Apasionado/a"; $a->strings["Dating"] = "Saliendo con alguien"; $a->strings["Unfaithful"] = "Infiel"; $a->strings["Sex Addict"] = "Con adicción al sexo"; +$a->strings["Friends"] = "Amigos/as"; $a->strings["Friends/Benefits"] = "Amigos con algo extra"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Prometido/a"; @@ -875,6 +708,150 @@ $a->strings["want"] = "quiero"; $a->strings["wants"] = "quiere"; $a->strings["likes"] = "gusta de"; $a->strings["dislikes"] = "no gusta de"; +$a->strings["Invalid data packet"] = "Paquete de datos no válido"; +$a->strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; +$a->strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; +$a->strings["invalid target signature"] = "La firma recibida no es válida"; +$a->strings["Frequently"] = "Frecuentemente"; +$a->strings["Hourly"] = "Cada hora"; +$a->strings["Twice daily"] = "Dos veces al día"; +$a->strings["Daily"] = "Diariamente"; +$a->strings["Weekly"] = "Semanalmente"; +$a->strings["Monthly"] = "Mensualmente"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Correo electrónico"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot"] = "Zot"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["General Features"] = "Funcionalidades básicas"; +$a->strings["Content Expiration"] = "Caducidad del contenido"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; +$a->strings["Multiple Profiles"] = "Múltiples perfiles"; +$a->strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +$a->strings["Advanced Profiles"] = "Perfiles avanzados"; +$a->strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; +$a->strings["Profile Import/Export"] = "Importar/Exportar perfil"; +$a->strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; +$a->strings["Web Pages"] = "Páginas web"; +$a->strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; +$a->strings["Hide Rating"] = "Ocultar las valoraciones"; +$a->strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."; +$a->strings["Private Notes"] = "Notas privadas"; +$a->strings["Enables a tool to store notes and reminders"] = "Activar una herramienta para almacenar notas y recordatorios"; +$a->strings["Navigation Channel Select"] = "Navegación por el selector de canales"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; +$a->strings["Photo Location"] = "Ubicación de las fotos"; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; +$a->strings["Expert Mode"] = "Modo de experto"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; +$a->strings["Premium Channel"] = "Canal premium"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +$a->strings["Post Composition Features"] = "Opciones para la redacción de entradas"; +$a->strings["Use Markdown"] = "Usar Markdown"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones"; +$a->strings["Large Photos"] = "Fotos de gran tamaño"; +$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; +$a->strings["Channel Sources"] = "Orígenes de los contenidos del canal"; +$a->strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; +$a->strings["Even More Encryption"] = "Más cifrado todavía"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; +$a->strings["Enable Voting Tools"] = "Permitir entradas con votación"; +$a->strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; +$a->strings["Delayed Posting"] = "Publicación aplazada"; +$a->strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; +$a->strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; +$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; +$a->strings["Network and Stream Filtering"] = "Filtrado del contenido"; +$a->strings["Search by Date"] = "Buscar por fecha"; +$a->strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; +$a->strings["Collections (Privacy Groups)"] = "Colecciones (grupos privados)"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Habilitar la muestra de entradas eligiendo colecciones"; +$a->strings["Saved Searches"] = "Búsquedas guardadas"; +$a->strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; +$a->strings["Network Personal Tab"] = "Actividad personal"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; +$a->strings["Network New Tab"] = "Contenido nuevo"; +$a->strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; +$a->strings["Affinity Tool"] = "Herramienta de afinidad"; +$a->strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; +$a->strings["Connection Filtering"] = "Filtrado de conexiones"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +$a->strings["Suggest Channels"] = "Sugerir canales"; +$a->strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; +$a->strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; +$a->strings["Community Tagging"] = "Etiquetas de la comunidad"; +$a->strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; +$a->strings["Post Categories"] = "Categorías de entradas"; +$a->strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; +$a->strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; +$a->strings["Dislike Posts"] = "Desagrado de publicaciones"; +$a->strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; +$a->strings["Star Posts"] = "Entradas destacadas"; +$a->strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; +$a->strings["Tag Cloud"] = "Nube de etiquetas"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; +$a->strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +$a->strings["Empty name"] = "Nombre vacío"; +$a->strings["Name too long"] = "Nombre demasiado largo"; +$a->strings["No account identifier"] = "Ningún identificador de la cuenta"; +$a->strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +$a->strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros usuarios de este sitio."; +$a->strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +$a->strings["Default Profile"] = "Perfil principal"; +$a->strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; +$a->strings["Change profile photo"] = "Cambiar la foto del perfil"; +$a->strings["Profiles"] = "Perfiles"; +$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; +$a->strings["Create New Profile"] = "Crear un nuevo perfil"; +$a->strings["Profile Image"] = "Imagen del perfil"; +$a->strings["visible to everybody"] = "visible para cualquiera"; +$a->strings["Edit visibility"] = "Editar visibilidad"; +$a->strings["Gender:"] = "Género:"; +$a->strings["Status:"] = "Estado:"; +$a->strings["Homepage:"] = "Página personal:"; +$a->strings["Online Now"] = "Ahora en línea"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[hoy]"; +$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; +$a->strings["Birthdays this week:"] = "Cumpleaños de esta semana:"; +$a->strings["[No description]"] = "[Sin descripción]"; +$a->strings["Event Reminders"] = "Recordatorios de eventos"; +$a->strings["Events this week:"] = "Eventos de esta semana:"; +$a->strings["Full Name:"] = "Nombre completo:"; +$a->strings["Like this channel"] = "Me gusta este canal"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Cumpleaños:"; +$a->strings["Age:"] = "Edad:"; +$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Orientación sexual:"; +$a->strings["Hometown:"] = "Ciudad de origen:"; +$a->strings["Tags:"] = "Etiquetas:"; +$a->strings["Political Views:"] = "Posición política:"; +$a->strings["Religion:"] = "Religión:"; +$a->strings["About:"] = "Sobre mí:"; +$a->strings["Hobbies/Interests:"] = "Aficciones/Intereses:"; +$a->strings["Likes:"] = "Me gusta:"; +$a->strings["Dislikes:"] = "No me gusta:"; +$a->strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +$a->strings["My other channels:"] = "Mis otros canales:"; +$a->strings["Musical interests:"] = "Intereses musicales:"; +$a->strings["Books, literature:"] = "Libros, literatura:"; +$a->strings["Television:"] = "Televisión:"; +$a->strings["Film/dance/culture/entertainment:"] = "Cine/danza/cultura/entretenimiento:"; +$a->strings["Love/Romance:"] = "Vida sentimental/amorosa:"; +$a->strings["Work/employment:"] = "Trabajo:"; +$a->strings["School/education:"] = "Estudios:"; +$a->strings["Like this thing"] = "Me gusta esto"; +$a->strings["cover photo"] = "Imagen de portada del perfil"; $a->strings["prev"] = "anterior"; $a->strings["first"] = "primera"; $a->strings["last"] = "última"; @@ -882,11 +859,7 @@ $a->strings["next"] = "próxima"; $a->strings["older"] = "más antiguas"; $a->strings["newer"] = "más recientes"; $a->strings["No connections"] = "Sin conexiones"; -$a->strings["%d Connection"] = array( - 0 => "%d Conexión", - 1 => "%d Conexiones", -); -$a->strings["View Connections"] = "Ver conexiones"; +$a->strings["View all %s connections"] = "Ver todas las %s conexiones"; $a->strings["Save"] = "Guardar"; $a->strings["poke"] = "un toque"; $a->strings["ping"] = "un \"ping\""; @@ -938,10 +911,6 @@ $a->strings["Blocks"] = "Bloques"; $a->strings["Menus"] = "Menús"; $a->strings["Layouts"] = "Formato gráfico"; $a->strings["Pages"] = "Páginas"; -$a->strings["Invalid data packet"] = "Paquete de datos no válido"; -$a->strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; -$a->strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; -$a->strings["invalid target signature"] = "La firma recibida no es válida"; $a->strings["System"] = "Sistema"; $a->strings["Create Personal App"] = "Crear una aplicación personal"; $a->strings["Edit Personal App"] = "Editar una aplicación personal"; @@ -989,6 +958,7 @@ $a->strings["Chat Rooms"] = "Salas de chat"; $a->strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; $a->strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; $a->strings["photo/image"] = "foto/imagen"; +$a->strings["Rating Tools"] = "Valoraciones"; $a->strings["Rate Me"] = "Valorar este canal"; $a->strings["View Ratings"] = "Mostrar las valoraciones"; $a->strings["Public Hubs"] = "Servidores públicos"; @@ -1012,6 +982,22 @@ $a->strings["Plugin Features"] = "Extensiones"; $a->strings["User registrations waiting for confirmation"] = "Registros de usuarios pendientes de confirmación"; $a->strings["View Photo"] = "Ver foto"; $a->strings["Edit Album"] = "Editar álbum"; +$a->strings["Permission denied"] = "Permiso denegado"; +$a->strings["(Unknown)"] = "(Desconocido)"; +$a->strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +$a->strings["Visible to you only."] = "Visible sólo para usted."; +$a->strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +$a->strings["Visible to anybody authenticated."] = "Visible para cualquiera que haya sido autenticado."; +$a->strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +$a->strings["Visible to all connections."] = "Visible para todas las conexiones."; +$a->strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +$a->strings["Visible to specific connections."] = "Visible para conexiones específicas."; +$a->strings["Item not found."] = "Elemento no encontrado."; +$a->strings["Collection not found."] = "Colección no encontrada."; +$a->strings["Collection is empty."] = "La colección está vacía."; +$a->strings["Collection: %s"] = "Colección: %s"; +$a->strings["Connection: %s"] = "Conexión: %s"; +$a->strings["Connection not found."] = "Conexión no encontrada"; $a->strings["Not Found"] = "No encontrado"; $a->strings["Page not found."] = "Página no encontrada."; $a->strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; @@ -1100,7 +1086,7 @@ $a->strings["Poll interval"] = "Intervalo de sondeo"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el sondeo en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de transmisión."; $a->strings["Maximum Load Average"] = "Carga media máxima"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de transmisión y sondeo se hayan retardado - por defecto, 50."; -$a->strings["Expiration period in days for imported (matrix/network) content"] = "Periodo de caducidad en días para el contenido importado (red)"; +$a->strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; $a->strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; $a->strings["Off"] = "Desactivado"; $a->strings["On"] = "Activado"; @@ -1276,13 +1262,73 @@ $a->strings["Only show blocked connections"] = "Mostrar solo las conexiones bloq $a->strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; $a->strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas"; $a->strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; -$a->strings["Pending"] = "Pendiente"; +$a->strings["Pending approval"] = "Pendiente de aprobación"; $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; $a->strings["Edit connection"] = "Editar conexión"; $a->strings["Delete connection"] = "Eliminar conexión"; +$a->strings["Channel address"] = "Dirección del canal"; +$a->strings["Network"] = "Red"; $a->strings["Connected"] = "Conectado/a"; +$a->strings["Approve connection"] = "Aprobar esta conexión"; +$a->strings["Recent activity"] = "Actividad reciente"; $a->strings["Search your connections"] = "Buscar sus conexiones"; $a->strings["Connections search"] = "Buscar conexiones"; +$a->strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; +$a->strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; +$a->strings["Connection updated."] = "Conexión actualizada."; +$a->strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; +$a->strings["is now connected to"] = "ahora está conectado/a"; +$a->strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; +$a->strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; +$a->strings["Connection has been removed."] = "La conexión ha sido eliminada."; +$a->strings["View %s's profile"] = "Ver el perfil de %s"; +$a->strings["Refresh Permissions"] = "Recargar los permisos"; +$a->strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; +$a->strings["Recent Activity"] = "Actividad reciente"; +$a->strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; +$a->strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; +$a->strings["Unignore"] = "Dejar de ignorar"; +$a->strings["Ignore"] = "Ignorar"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; +$a->strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; +$a->strings["Unarchive"] = "Desarchivar"; +$a->strings["Archive"] = "Archivar"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; +$a->strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; +$a->strings["Unhide"] = "Mostrar"; +$a->strings["Hide"] = "Ocultar"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; +$a->strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; +$a->strings["Delete this connection"] = "Eliminar esta conexión"; +$a->strings["Approve this connection"] = "Aprobar esta conexión"; +$a->strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; +$a->strings["Set Affinity"] = "Ajustar la afinidad"; +$a->strings["Set Profile"] = "Ajustar el perfil"; +$a->strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; +$a->strings["none"] = "-"; +$a->strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; +$a->strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; +$a->strings["Available locations:"] = "Ubicaciones disponibles:"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; +$a->strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; +$a->strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; +$a->strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; +$a->strings["Custom Filter"] = "Filtro personalizado"; +$a->strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; +$a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; +$a->strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; +$a->strings["This information is public!"] = "¡Esta información es pública!"; +$a->strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; +$a->strings["inherited"] = "heredado"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; +$a->strings["Their Settings"] = "Sus ajustes"; +$a->strings["My Settings"] = "Mis ajustes"; +$a->strings["Individual Permissions"] = "Permisos individuales"; +$a->strings["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."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; +$a->strings["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."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; +$a->strings["Last update:"] = "Última actualización:"; $a->strings["\$Projectname channel"] = "Canal \$Projectname"; $a->strings["Public access denied."] = "Acceso público denegado."; $a->strings["%d rating"] = array( @@ -1509,21 +1555,6 @@ $a->strings["Sync now"] = "Sincronizar ahora"; $a->strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; $a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; $a->strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; -$a->strings["No valid account found."] = "No se ha encontrado una cuenta válida."; -$a->strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; -$a->strings["Site Member (%s)"] = "Usuario del sitio (%s)"; -$a->strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -$a->strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -$a->strings["Your new password is"] = "Su nueva contraseña es"; -$a->strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -$a->strings["click here to login"] = "pulse aquí para conectarse"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -$a->strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -$a->strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; -$a->strings["Email Address"] = "Dirección de correo electrónico"; -$a->strings["Reset"] = "Reiniciar"; $a->strings["Hub not found."] = "Servidor no encontrado"; $a->strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; $a->strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; @@ -1631,7 +1662,6 @@ $a->strings["Channel Type"] = "Tipo de canal"; $a->strings["Read more about roles"] = "Leer más sobre los roles"; $a->strings["Invalid request identifier."] = "Petición inválida del identificador."; $a->strings["Discard"] = "Descartar"; -$a->strings["Ignore"] = "Ignorar"; $a->strings["No more system notifications."] = "No hay más notificaciones del sistema"; $a->strings["System Notifications"] = "Notificaciones de sistema"; $a->strings["Unable to find your hub."] = "No se puede encontrar su servidor."; @@ -1794,7 +1824,6 @@ $a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto $a->strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; $a->strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; $a->strings["No ratings"] = "Ninguna valoración"; -$a->strings["Ratings"] = "Valoraciones"; $a->strings["Rating: "] = "Valoración:"; $a->strings["Website: "] = "Sitio web:"; $a->strings["Description: "] = "Descripción:"; @@ -1898,10 +1927,10 @@ $a->strings["Link post titles to source"] = "Enlazar título de la publicación $a->strings["System Page Layout Editor - (advanced)"] = "Editor de diseño de página del sistema - (avanzado)"; $a->strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; $a->strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; -$a->strings["Use blog/list mode on matrix page"] = "Mostrar la red en modo blog/lista"; +$a->strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; $a->strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; $a->strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; -$a->strings["Matrix page max height of content (in pixels)"] = "Altura máxima del contenido de la página de su red (en píxeles)"; +$a->strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; $a->strings["Nobody except yourself"] = "Nadie excepto usted"; $a->strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; $a->strings["Approved connections"] = "Conexiones aprobadas"; @@ -1956,7 +1985,7 @@ $a->strings["You receive a friend suggestion"] = "Reciba una sugerencia de amist $a->strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; $a->strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; $a->strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; -$a->strings["Unseen matrix activity"] = "Actividad no vista en la red"; +$a->strings["Unseen grid activity"] = "Nueva actividad en la red"; $a->strings["Unseen channel activity"] = "Actividad no vista en el canal"; $a->strings["Unseen private messages"] = "Mensajes privados no leídos"; $a->strings["Recommended"] = "Recomendado"; @@ -2067,64 +2096,22 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; $a->strings["

What next

"] = "

Siguiente paso

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; -$a->strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; -$a->strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; -$a->strings["Connection updated."] = "Conexión actualizada."; -$a->strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; -$a->strings["is now connected to"] = "ahora está conectado/a"; -$a->strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; -$a->strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; -$a->strings["Connection has been removed."] = "La conexión ha sido eliminada."; -$a->strings["View %s's profile"] = "Ver el perfil de %s"; -$a->strings["Refresh Permissions"] = "Recargar los permisos"; -$a->strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; -$a->strings["Recent Activity"] = "Actividad reciente"; -$a->strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; -$a->strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; -$a->strings["Unignore"] = "Dejar de ignorar"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; -$a->strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; -$a->strings["Unarchive"] = "Desarchivar"; -$a->strings["Archive"] = "Archivar"; -$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; -$a->strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; -$a->strings["Unhide"] = "Mostrar"; -$a->strings["Hide"] = "Ocultar"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; -$a->strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; -$a->strings["Delete this connection"] = "Eliminar esta conexión"; -$a->strings["Approve this connection"] = "Aprobar esta conexión"; -$a->strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; -$a->strings["Set Affinity"] = "Ajustar la afinidad"; -$a->strings["Set Profile"] = "Ajustar el perfil"; -$a->strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; -$a->strings["none"] = "-"; -$a->strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; -$a->strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; -$a->strings["Available locations:"] = "Ubicaciones disponibles:"; -$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; -$a->strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; -$a->strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; -$a->strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; -$a->strings["Custom Filter"] = "Filtro personalizado"; -$a->strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; -$a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; -$a->strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; -$a->strings["This information is public!"] = "¡Esta información es pública!"; -$a->strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; -$a->strings["Connection Request"] = "Solicitud de conexión"; -$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación."; -$a->strings["Approve Later"] = "Aprobar más tarde"; -$a->strings["inherited"] = "heredado"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; -$a->strings["Their Settings"] = "Sus ajustes"; -$a->strings["My Settings"] = "Mis ajustes"; -$a->strings["Individual Permissions"] = "Permisos individuales"; -$a->strings["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."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; -$a->strings["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."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; -$a->strings["Last update:"] = "Última actualización:"; +$a->strings["No valid account found."] = "No se ha encontrado una cuenta válida."; +$a->strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; +$a->strings["Site Member (%s)"] = "Usuario del sitio (%s)"; +$a->strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +$a->strings["Password Reset"] = "Restablecer la contraseña"; +$a->strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +$a->strings["Your new password is"] = "Su nueva contraseña es"; +$a->strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +$a->strings["click here to login"] = "pulse aquí para conectarse"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +$a->strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +$a->strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; +$a->strings["Email Address"] = "Dirección de correo electrónico"; +$a->strings["Reset"] = "Reiniciar"; $a->strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; $a->strings["NEW"] = "NUEVO"; $a->strings["Remove all files"] = "Eliminar todos los ficheros"; @@ -2188,6 +2175,7 @@ $a->strings["To select all posts for a given month, such as January of this year $a->strings["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)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; $a->strings["No connections."] = "Sin conexiones."; $a->strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; +$a->strings["View Connections"] = "Ver conexiones"; $a->strings["Source of Item"] = "Origen del elemento"; $a->strings["Page Title"] = "Título de página"; $a->strings["Xchan Lookup"] = "Búsqueda de canales"; @@ -2228,3 +2216,14 @@ $a->strings["Left align page content"] = "Alinear a la izquierda el contenido de $a->strings["Set minimum opacity of nav bar - to hide it"] = "Ajustar la opacidad mínima de la barra de navegación - para ocultarla"; $a->strings["Set size of conversation author photo"] = "Ajustar el tamaño de la foto del autor de la conversación"; $a->strings["Set size of followup author photos"] = "Ajustar el tamaño de foto de los seguidores del autor"; +$a->strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; +$a->strings["Update Error at %s"] = "Error de actualización en %s"; +$a->strings["Create an account to access services and applications within the Hubzilla"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla"; +$a->strings["Password"] = "Contraseña"; +$a->strings["Remember me"] = "Recordarme"; +$a->strings["Forgot your password?"] = "¿Olvidó su contraseña?"; +$a->strings["toggle mobile"] = "cambiar a modo móvil"; +$a->strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."; +$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Error SSL del sitio web en %s"; +$a->strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando."; +$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Las tareas de Cron no están funcionando en %s"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 9bbdbdf26..511368a1f 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-15 00:03-0800\n" -"PO-Revision-Date: 2016-01-17 18:45+0000\n" +"POT-Creation-Date: 2016-01-22 00:03-0800\n" +"PO-Revision-Date: 2016-01-22 14:31+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -30,110 +30,8 @@ msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelog msgid "Welcome %s. Remote authentication successful." msgstr "Welkom %s. Authenticatie op afstand geslaagd." -#: ../../boot.php:1319 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s mislukt. Zie foutenlogboek." - -#: ../../boot.php:1322 -#, php-format -msgid "Update Error at %s" -msgstr "Update-fout op %s" - -#: ../../boot.php:1489 -msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" - -#: ../../boot.php:1490 ../../include/nav.php:149 ../../mod/register.php:264 -msgid "Register" -msgstr "Registreren" - -#: ../../boot.php:1507 ../../include/nav.php:82 ../../include/nav.php:114 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../boot.php:1508 ../../include/apps.php:131 ../../include/nav.php:111 -msgid "Login" -msgstr "Inloggen" - -#: ../../boot.php:1510 ../../include/contact_selectors.php:79 -#: ../../mod/admin.php:891 ../../mod/admin.php:900 ../../mod/id.php:15 -#: ../../mod/id.php:16 -msgid "Email" -msgstr "E-mail" - -#: ../../boot.php:1511 -msgid "Password" -msgstr "Wachtwoord" - -#: ../../boot.php:1512 -msgid "Remember me" -msgstr "Aangemeld blijven" - -#: ../../boot.php:1512 ../../include/dir_fns.php:141 -#: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 -#: ../../mod/admin.php:421 ../../mod/api.php:102 ../../mod/events.php:447 -#: ../../mod/events.php:448 ../../mod/events.php:457 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 -#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 -#: ../../mod/photos.php:626 ../../mod/removeme.php:60 -#: ../../mod/settings.php:577 ../../mod/connedit.php:644 -#: ../../mod/connedit.php:693 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 -msgid "No" -msgstr "Nee" - -#: ../../boot.php:1512 ../../include/dir_fns.php:141 -#: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 -#: ../../mod/admin.php:423 ../../mod/api.php:101 ../../mod/events.php:447 -#: ../../mod/events.php:448 ../../mod/events.php:457 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 -#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 -#: ../../mod/photos.php:626 ../../mod/removeme.php:60 -#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Yes" -msgstr "Ja" - -#: ../../boot.php:1515 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" - -#: ../../boot.php:1516 ../../mod/lostpass.php:86 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" - -#: ../../boot.php:2137 -msgid "toggle mobile" -msgstr "mobiele weergave omschakelen" - -#: ../../boot.php:2289 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." - -#: ../../boot.php:2292 -#, php-format -msgid "[hubzilla] Website SSL error for %s" -msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" - -#: ../../boot.php:2329 -msgid "Cron/Scheduled tasks not running." -msgstr "Cron is niet actief" - -#: ../../boot.php:2330 ../../include/datetime.php:263 -msgid "never" -msgstr "nooit" - -#: ../../boot.php:2333 -#, php-format -msgid "[hubzilla] Cron tasks not running on %s" -msgstr "[hubzilla] Cron-taken zijn niet actief op %s" - -#: ../../include/Contact.php:101 ../../include/conversation.php:953 -#: ../../include/identity.php:947 ../../include/widgets.php:137 +#: ../../include/Contact.php:101 ../../include/conversation.php:961 +#: ../../include/identity.php:949 ../../include/widgets.php:137 #: ../../include/widgets.php:175 ../../mod/directory.php:318 #: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" @@ -171,22 +69,22 @@ msgstr "Niet voor iedereen zichtbaar" #: ../../include/ItemObject.php:100 ../../include/RedDAV/RedBrowser.php:240 #: ../../include/apps.php:259 ../../include/menu.php:108 #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/blocks.php:153 ../../mod/connections.php:262 -#: ../../mod/connections.php:281 ../../mod/connections.php:301 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:176 -#: ../../mod/layouts.php:183 ../../mod/menu.php:108 ../../mod/settings.php:648 -#: ../../mod/thing.php:257 ../../mod/webpages.php:181 +#: ../../mod/blocks.php:153 ../../mod/connections.php:284 +#: ../../mod/connections.php:304 ../../mod/editblock.php:135 +#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112 +#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183 +#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:257 +#: ../../mod/webpages.php:181 msgid "Edit" msgstr "Bewerken" #: ../../include/ItemObject.php:120 ../../include/RedDAV/RedBrowser.php:241 #: ../../include/apps.php:260 ../../include/conversation.php:657 #: ../../mod/admin.php:895 ../../mod/admin.php:1054 ../../mod/blocks.php:155 -#: ../../mod/connections.php:263 ../../mod/editblock.php:181 -#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223 -#: ../../mod/group.php:173 ../../mod/photos.php:1126 -#: ../../mod/settings.php:649 ../../mod/connedit.php:560 +#: ../../mod/connections.php:259 ../../mod/connedit.php:560 +#: ../../mod/editblock.php:181 ../../mod/editlayout.php:179 +#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 +#: ../../mod/photos.php:1126 ../../mod/settings.php:649 #: ../../mod/thing.php:258 ../../mod/webpages.php:183 msgid "Delete" msgstr "Verwijderen" @@ -224,13 +122,13 @@ msgid "I abstain" msgstr "Onthouding" #: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1697 ../../mod/photos.php:1079 +#: ../../include/conversation.php:1707 ../../mod/photos.php:1079 #: ../../mod/photos.php:1091 msgid "View all" msgstr "Toon alles" -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1721 -#: ../../include/identity.php:1258 ../../include/taxonomy.php:414 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1731 +#: ../../include/taxonomy.php:414 ../../include/identity.php:1262 #: ../../mod/photos.php:1083 msgctxt "noun" msgid "Like" @@ -238,7 +136,7 @@ msgid_plural "Likes" msgstr[0] "vindt dit leuk" msgstr[1] "vinden dit leuk" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1724 +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1734 #: ../../mod/photos.php:1088 msgctxt "noun" msgid "Dislike" @@ -373,7 +271,7 @@ msgid "Close" msgstr "Sluiten" #: ../../include/ItemObject.php:389 ../../include/conversation.php:740 -#: ../../include/conversation.php:1227 ../../mod/editblock.php:150 +#: ../../include/conversation.php:1237 ../../mod/editblock.php:150 #: ../../mod/editlayout.php:148 ../../mod/editpost.php:129 #: ../../mod/editwebpage.php:190 ../../mod/photos.php:1026 msgid "Please wait" @@ -398,50 +296,50 @@ msgstr "Reactie" #: ../../mod/admin.php:453 ../../mod/admin.php:596 ../../mod/admin.php:888 #: ../../mod/admin.php:1052 ../../mod/admin.php:1228 ../../mod/admin.php:1423 #: ../../mod/admin.php:1508 ../../mod/appman.php:99 ../../mod/chat.php:184 -#: ../../mod/chat.php:213 ../../mod/connect.php:93 ../../mod/events.php:461 -#: ../../mod/events.php:658 ../../mod/filestorage.php:156 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/import.php:527 -#: ../../mod/import_items.php:122 ../../mod/invite.php:142 +#: ../../mod/chat.php:213 ../../mod/connect.php:93 ../../mod/connedit.php:720 +#: ../../mod/events.php:461 ../../mod/events.php:658 +#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 +#: ../../mod/group.php:81 ../../mod/import.php:527 +#: ../../mod/import_items.php:116 ../../mod/invite.php:142 #: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231 -#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:58 +#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59 #: ../../mod/photos.php:637 ../../mod/photos.php:1005 #: ../../mod/photos.php:1045 ../../mod/photos.php:1163 ../../mod/poke.php:171 #: ../../mod/profiles.php:675 ../../mod/rate.php:168 #: ../../mod/settings.php:586 ../../mod/settings.php:698 #: ../../mod/settings.php:726 ../../mod/settings.php:749 #: ../../mod/settings.php:834 ../../mod/settings.php:1023 -#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/connedit.php:724 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:313 -#: ../../mod/thing.php:359 ../../mod/xchan.php:11 -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/thing.php:313 ../../mod/thing.php:359 +#: ../../mod/xchan.php:11 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "Opslaan" -#: ../../include/ItemObject.php:698 ../../include/conversation.php:1199 +#: ../../include/ItemObject.php:698 ../../include/conversation.php:1209 #: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 #: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177 msgid "Bold" msgstr "Vet" -#: ../../include/ItemObject.php:699 ../../include/conversation.php:1200 +#: ../../include/ItemObject.php:699 ../../include/conversation.php:1210 #: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 #: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178 msgid "Italic" msgstr "Cursief" -#: ../../include/ItemObject.php:700 ../../include/conversation.php:1201 +#: ../../include/ItemObject.php:700 ../../include/conversation.php:1211 #: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 #: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179 msgid "Underline" msgstr "Onderstrepen" -#: ../../include/ItemObject.php:701 ../../include/conversation.php:1202 +#: ../../include/ItemObject.php:701 ../../include/conversation.php:1212 #: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 #: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180 msgid "Quote" msgstr "Citeren" -#: ../../include/ItemObject.php:702 ../../include/conversation.php:1203 +#: ../../include/ItemObject.php:702 ../../include/conversation.php:1213 #: ../../mod/editblock.php:140 ../../mod/editlayout.php:139 #: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181 msgid "Code" @@ -459,7 +357,7 @@ msgstr "Link invoegen" msgid "Video" msgstr "Video" -#: ../../include/ItemObject.php:706 ../../include/conversation.php:1169 +#: ../../include/ItemObject.php:706 ../../include/conversation.php:1179 #: ../../include/page_widgets.php:40 ../../mod/editblock.php:171 #: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212 #: ../../mod/events.php:458 ../../mod/photos.php:1046 @@ -467,7 +365,7 @@ msgstr "Video" msgid "Preview" msgstr "Voorvertoning" -#: ../../include/ItemObject.php:709 ../../include/conversation.php:1257 +#: ../../include/ItemObject.php:709 ../../include/conversation.php:1267 #: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385 msgid "Encrypt text" msgstr "Tekst versleutelen" @@ -502,14 +400,14 @@ msgid "Schedule Outbox" msgstr "Planning-postvak UIT" #: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360 -#: ../../include/apps.php:415 ../../include/conversation.php:1027 -#: ../../include/widgets.php:1366 ../../mod/photos.php:754 +#: ../../include/apps.php:415 ../../include/conversation.php:1037 +#: ../../include/widgets.php:1368 ../../mod/photos.php:754 #: ../../mod/photos.php:1195 msgid "Unknown" msgstr "Onbekend" #: ../../include/RedDAV/RedBrowser.php:226 ../../include/apps.php:135 -#: ../../include/conversation.php:1629 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 ../../include/nav.php:93 #: ../../mod/fbrowser.php:109 msgid "Files" msgstr "Bestanden" @@ -531,7 +429,7 @@ msgid "Create" msgstr "Aanmaken" #: ../../include/RedDAV/RedBrowser.php:231 -#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1379 +#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1381 #: ../../mod/photos.php:781 ../../mod/photos.php:1316 #: ../../mod/profile_photo.php:453 ../../mod/cover_photo.php:353 msgid "Upload" @@ -617,7 +515,7 @@ msgid "Registration request at %s" msgstr "Registratiebevestiging voor %s" #: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1659 +#: ../../include/account.php:404 ../../include/network.php:1660 msgid "Administrator" msgstr "Beheerder" @@ -708,7 +606,7 @@ msgstr "Openbare tijdlijn" msgid "Site Admin" msgstr "Hubbeheerder" -#: ../../include/apps.php:129 ../../include/conversation.php:1655 +#: ../../include/apps.php:129 ../../include/conversation.php:1665 #: ../../include/nav.php:103 msgid "Bookmarks" msgstr "Bladwijzers" @@ -717,6 +615,10 @@ msgstr "Bladwijzers" msgid "Address Book" msgstr "Connecties" +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1508 +msgid "Login" +msgstr "Inloggen" + #: ../../include/apps.php:132 ../../include/nav.php:200 #: ../../mod/manage.php:160 msgid "Channel Manager" @@ -732,7 +634,7 @@ msgstr "Grid" msgid "Settings" msgstr "Instellingen" -#: ../../include/apps.php:136 ../../include/conversation.php:1665 +#: ../../include/apps.php:136 ../../include/conversation.php:1675 #: ../../include/nav.php:107 ../../mod/webpages.php:178 msgid "Webpages" msgstr "Webpagina's" @@ -741,12 +643,12 @@ msgstr "Webpagina's" msgid "Channel Home" msgstr "Jouw kanaal" -#: ../../include/apps.php:138 ../../include/identity.php:1232 -#: ../../include/identity.php:1349 ../../mod/profperm.php:112 +#: ../../include/apps.php:138 ../../include/identity.php:1236 +#: ../../include/identity.php:1353 ../../mod/profperm.php:112 msgid "Profile" msgstr "Profiel" -#: ../../include/apps.php:139 ../../include/conversation.php:1622 +#: ../../include/apps.php:139 ../../include/conversation.php:1632 #: ../../include/nav.php:92 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "Foto's" @@ -772,7 +674,7 @@ msgstr "Privéberichten" msgid "Mood" msgstr "Stemming" -#: ../../include/apps.php:145 ../../include/conversation.php:956 +#: ../../include/apps.php:145 ../../include/conversation.php:965 msgid "Poke" msgstr "Aanstoten" @@ -782,7 +684,7 @@ msgstr "Chatten" #: ../../include/apps.php:147 ../../include/nav.php:159 #: ../../include/text.php:885 ../../include/text.php:897 -#: ../../mod/connections.php:297 ../../mod/search.php:40 +#: ../../mod/connections.php:300 ../../mod/search.php:40 msgid "Search" msgstr "Zoeken" @@ -802,7 +704,7 @@ msgstr "Willekeurig kanaal" msgid "Invite" msgstr "Uitnodigen " -#: ../../include/apps.php:152 ../../include/widgets.php:1252 +#: ../../include/apps.php:152 ../../include/widgets.php:1254 msgid "Features" msgstr "Extra functies" @@ -838,37 +740,37 @@ msgstr "Aanschaffen" #: ../../include/attach.php:351 ../../include/attach.php:358 #: ../../include/attach.php:436 ../../include/attach.php:888 #: ../../include/attach.php:959 ../../include/attach.php:1111 -#: ../../include/chat.php:133 ../../include/items.php:4405 -#: ../../include/photos.php:29 ../../index.php:182 ../../index.php:367 +#: ../../include/chat.php:133 ../../include/photos.php:29 +#: ../../include/items.php:4407 ../../index.php:186 ../../index.php:371 #: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22 #: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 #: ../../mod/bookmarks.php:48 ../../mod/channel.php:100 #: ../../mod/channel.php:214 ../../mod/channel.php:254 ../../mod/chat.php:94 #: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/connections.php:29 -#: ../../mod/editblock.php:65 ../../mod/editlayout.php:63 -#: ../../mod/editlayout.php:87 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/events.php:260 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/group.php:9 ../../mod/id.php:71 ../../mod/invite.php:13 -#: ../../mod/invite.php:87 ../../mod/item.php:206 ../../mod/item.php:214 -#: ../../mod/item.php:1049 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/like.php:177 ../../mod/locs.php:83 -#: ../../mod/mail.php:126 ../../mod/manage.php:6 ../../mod/menu.php:74 -#: ../../mod/message.php:16 ../../mod/mitem.php:111 ../../mod/mood.php:112 -#: ../../mod/network.php:12 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/pdledit.php:21 -#: ../../mod/photos.php:70 ../../mod/poke.php:133 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/profile_photo.php:341 -#: ../../mod/profile_photo.php:354 ../../mod/profiles.php:198 -#: ../../mod/profiles.php:584 ../../mod/rate.php:111 ../../mod/register.php:73 -#: ../../mod/regmod.php:17 ../../mod/service_limits.php:7 -#: ../../mod/settings.php:568 ../../mod/setup.php:227 -#: ../../mod/connedit.php:355 ../../mod/sharedwithme.php:7 +#: ../../mod/connedit.php:355 ../../mod/editblock.php:65 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101 +#: ../../mod/editwebpage.php:125 ../../mod/events.php:260 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71 +#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:1050 ../../mod/layouts.php:69 +#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177 +#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6 +#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111 +#: ../../mod/mood.php:112 ../../mod/network.php:12 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/notifications.php:66 ../../mod/page.php:31 ../../mod/page.php:86 +#: ../../mod/pdledit.php:22 ../../mod/photos.php:70 ../../mod/poke.php:133 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/profile_photo.php:341 ../../mod/profile_photo.php:354 +#: ../../mod/profiles.php:198 ../../mod/profiles.php:584 +#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17 +#: ../../mod/service_limits.php:7 ../../mod/settings.php:568 +#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 #: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:271 #: ../../mod/thing.php:291 ../../mod/thing.php:328 #: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 @@ -975,7 +877,7 @@ msgid "Finishes:" msgstr "Einde:" #: ../../include/bb2diaspora.php:487 ../../include/event.php:52 -#: ../../include/identity.php:998 ../../include/text.php:1425 +#: ../../include/identity.php:1000 ../../include/text.php:1425 #: ../../mod/directory.php:304 msgid "Location:" msgstr "Plaats:" @@ -1072,66 +974,6 @@ msgstr "Chatkanaal is vol" msgid "Default" msgstr "Standaard" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Regelmatig" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Elk uur" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagelijks" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wekelijks" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Maandelijks" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - #: ../../include/contact_widgets.php:14 #, php-format msgid "%d invitation available" @@ -1159,7 +1001,7 @@ msgstr "Verbinden/volgen" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Voorbeeld: Robert Morgenstein, vissen" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:300 +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:303 #: ../../mod/directory.php:381 ../../mod/directory.php:386 msgid "Find" msgstr "Vinden" @@ -1181,7 +1023,7 @@ msgstr "Vrienden uitnodigen" msgid "Advanced example: name=fred and country=iceland" msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" -#: ../../include/contact_widgets.php:57 ../../include/features.php:92 +#: ../../include/contact_widgets.php:57 ../../include/features.php:93 #: ../../include/widgets.php:304 msgid "Saved Folders" msgstr "Bewaarde mappen" @@ -1331,389 +1173,385 @@ msgstr "Aan het laden..." msgid "Delete Selected Items" msgstr "Verwijder de geselecteerde items" -#: ../../include/conversation.php:946 +#: ../../include/conversation.php:953 msgid "View Source" msgstr "Bron weergeven" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:954 msgid "Follow Thread" msgstr "Conversatie volgen" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:955 msgid "Unfollow Thread" msgstr "Conversatie niet meer volgen" -#: ../../include/conversation.php:949 -msgid "View Status" -msgstr "Status weergeven" - -#: ../../include/conversation.php:950 ../../include/nav.php:86 +#: ../../include/conversation.php:959 ../../include/nav.php:86 #: ../../mod/connedit.php:507 msgid "View Profile" msgstr "Profiel weergeven" -#: ../../include/conversation.php:951 -msgid "View Photos" -msgstr "Foto's weergeven" - -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:960 msgid "Activity/Posts" -msgstr "Kanaal-activiteit" +msgstr "Activiteit/berichten connectie" -#: ../../include/conversation.php:954 +#: ../../include/conversation.php:962 msgid "Edit Connection" msgstr "Connectie bewerken" -#: ../../include/conversation.php:955 -msgid "Send PM" -msgstr "Privébericht verzenden" +#: ../../include/conversation.php:963 +msgid "Message" +msgstr "Bericht" -#: ../../include/conversation.php:1070 +#: ../../include/conversation.php:964 ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Waarderingen" + +#: ../../include/conversation.php:1080 #, php-format msgid "%s likes this." msgstr "%s vindt dit leuk." -#: ../../include/conversation.php:1070 +#: ../../include/conversation.php:1080 #, php-format msgid "%s doesn't like this." msgstr "%s vindt dit niet leuk." -#: ../../include/conversation.php:1074 +#: ../../include/conversation.php:1084 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d persoon vindt dit leuk." msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/conversation.php:1076 +#: ../../include/conversation.php:1086 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d persoon vindt dit niet leuk." msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1092 msgid "and" msgstr "en" -#: ../../include/conversation.php:1085 +#: ../../include/conversation.php:1095 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", en %d ander persoon" msgstr[1] ", en %d andere personen" -#: ../../include/conversation.php:1086 +#: ../../include/conversation.php:1096 #, php-format msgid "%s like this." msgstr "%s vinden dit leuk." -#: ../../include/conversation.php:1086 +#: ../../include/conversation.php:1096 #, php-format msgid "%s don't like this." msgstr "%s vinden dit niet leuk." -#: ../../include/conversation.php:1154 +#: ../../include/conversation.php:1164 msgid "Visible to everybody" msgstr "Voor iedereen zichtbaar" -#: ../../include/conversation.php:1155 ../../mod/mail.php:202 +#: ../../include/conversation.php:1165 ../../mod/mail.php:202 #: ../../mod/mail.php:316 msgid "Please enter a link URL:" msgstr "Vul een internetadres/URL in:" -#: ../../include/conversation.php:1156 +#: ../../include/conversation.php:1166 msgid "Please enter a video link/URL:" msgstr "Vul een videolink/URL in:" -#: ../../include/conversation.php:1157 +#: ../../include/conversation.php:1167 msgid "Please enter an audio link/URL:" msgstr "Vul een audiolink/URL in:" -#: ../../include/conversation.php:1158 +#: ../../include/conversation.php:1168 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1159 ../../mod/filer.php:48 +#: ../../include/conversation.php:1169 ../../mod/filer.php:48 msgid "Save to Folder:" msgstr "Bewaar in map: " -#: ../../include/conversation.php:1160 +#: ../../include/conversation.php:1170 msgid "Where are you right now?" msgstr "Waar bevind je je op dit moment?" -#: ../../include/conversation.php:1161 ../../mod/editpost.php:56 +#: ../../include/conversation.php:1171 ../../mod/editpost.php:56 #: ../../mod/mail.php:203 ../../mod/mail.php:317 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../include/conversation.php:1192 ../../mod/blocks.php:154 +#: ../../include/conversation.php:1202 ../../mod/blocks.php:154 #: ../../mod/layouts.php:184 ../../mod/photos.php:1025 #: ../../mod/webpages.php:182 msgid "Share" msgstr "Delen" -#: ../../include/conversation.php:1194 +#: ../../include/conversation.php:1204 msgid "Page link name" msgstr "Linknaam pagina" -#: ../../include/conversation.php:1197 +#: ../../include/conversation.php:1207 msgid "Post as" msgstr "Bericht plaatsen als" -#: ../../include/conversation.php:1204 ../../mod/editblock.php:142 +#: ../../include/conversation.php:1214 ../../mod/editblock.php:142 #: ../../mod/editlayout.php:140 ../../mod/editpost.php:118 #: ../../mod/editwebpage.php:182 msgid "Upload photo" msgstr "Foto uploaden" -#: ../../include/conversation.php:1205 +#: ../../include/conversation.php:1215 msgid "upload photo" msgstr "foto uploaden" -#: ../../include/conversation.php:1206 ../../mod/editblock.php:143 +#: ../../include/conversation.php:1216 ../../mod/editblock.php:143 #: ../../mod/editlayout.php:141 ../../mod/editpost.php:119 #: ../../mod/editwebpage.php:183 ../../mod/mail.php:248 ../../mod/mail.php:378 msgid "Attach file" msgstr "Bestand toevoegen" -#: ../../include/conversation.php:1207 +#: ../../include/conversation.php:1217 msgid "attach file" msgstr "bestand toevoegen" -#: ../../include/conversation.php:1208 ../../mod/editblock.php:144 +#: ../../include/conversation.php:1218 ../../mod/editblock.php:144 #: ../../mod/editlayout.php:142 ../../mod/editpost.php:120 #: ../../mod/editwebpage.php:184 ../../mod/mail.php:249 ../../mod/mail.php:379 msgid "Insert web link" msgstr "Weblink invoegen" -#: ../../include/conversation.php:1209 +#: ../../include/conversation.php:1219 msgid "web link" msgstr "Weblink" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1220 msgid "Insert video link" msgstr "Videolink invoegen" -#: ../../include/conversation.php:1211 +#: ../../include/conversation.php:1221 msgid "video link" msgstr "videolink" -#: ../../include/conversation.php:1212 +#: ../../include/conversation.php:1222 msgid "Insert audio link" msgstr "Audiolink invoegen" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1223 msgid "audio link" msgstr "audiolink" -#: ../../include/conversation.php:1214 ../../mod/editblock.php:148 +#: ../../include/conversation.php:1224 ../../mod/editblock.php:148 #: ../../mod/editlayout.php:146 ../../mod/editpost.php:124 #: ../../mod/editwebpage.php:188 msgid "Set your location" msgstr "Locatie instellen" -#: ../../include/conversation.php:1215 +#: ../../include/conversation.php:1225 msgid "set location" msgstr "locatie instellen" -#: ../../include/conversation.php:1216 ../../mod/editpost.php:126 +#: ../../include/conversation.php:1226 ../../mod/editpost.php:126 msgid "Toggle voting" msgstr "Peiling in- of uitschakelen" -#: ../../include/conversation.php:1219 ../../mod/editblock.php:149 +#: ../../include/conversation.php:1229 ../../mod/editblock.php:149 #: ../../mod/editlayout.php:147 ../../mod/editpost.php:125 #: ../../mod/editwebpage.php:189 msgid "Clear browser location" msgstr "Locatie van webbrowser wissen" -#: ../../include/conversation.php:1220 +#: ../../include/conversation.php:1230 msgid "clear location" msgstr "locatie wissen" -#: ../../include/conversation.php:1222 ../../mod/editblock.php:162 +#: ../../include/conversation.php:1232 ../../mod/editblock.php:162 #: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205 msgid "Title (optional)" msgstr "Titel (optioneel)" -#: ../../include/conversation.php:1226 ../../mod/editblock.php:165 +#: ../../include/conversation.php:1236 ../../mod/editblock.php:165 #: ../../mod/editlayout.php:163 ../../mod/editpost.php:143 #: ../../mod/editwebpage.php:207 msgid "Categories (optional, comma-separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/conversation.php:1228 ../../mod/editblock.php:151 +#: ../../include/conversation.php:1238 ../../mod/editblock.php:151 #: ../../mod/editlayout.php:149 ../../mod/editpost.php:130 #: ../../mod/editwebpage.php:191 ../../mod/events.php:459 msgid "Permission settings" msgstr "Permissies" -#: ../../include/conversation.php:1229 +#: ../../include/conversation.php:1239 msgid "permissions" msgstr "permissies" -#: ../../include/conversation.php:1237 ../../mod/editblock.php:159 +#: ../../include/conversation.php:1247 ../../mod/editblock.php:159 #: ../../mod/editlayout.php:156 ../../mod/editpost.php:138 #: ../../mod/editwebpage.php:200 msgid "Public post" msgstr "Openbaar bericht" -#: ../../include/conversation.php:1239 ../../mod/editblock.php:166 +#: ../../include/conversation.php:1249 ../../mod/editblock.php:166 #: ../../mod/editlayout.php:164 ../../mod/editpost.php:144 #: ../../mod/editwebpage.php:208 msgid "Example: bob@example.com, mary@example.com" msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" -#: ../../include/conversation.php:1252 ../../mod/editblock.php:176 +#: ../../include/conversation.php:1262 ../../mod/editblock.php:176 #: ../../mod/editlayout.php:173 ../../mod/editpost.php:155 #: ../../mod/editwebpage.php:217 ../../mod/mail.php:253 ../../mod/mail.php:383 msgid "Set expiration date" msgstr "Verloopdatum instellen" -#: ../../include/conversation.php:1255 +#: ../../include/conversation.php:1265 msgid "Set publish date" msgstr "Publicatiedatum instellen" -#: ../../include/conversation.php:1259 ../../mod/editpost.php:159 +#: ../../include/conversation.php:1269 ../../mod/editpost.php:159 msgid "OK" msgstr "OK" -#: ../../include/conversation.php:1260 ../../mod/editpost.php:160 +#: ../../include/conversation.php:1270 ../../mod/editpost.php:160 #: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112 #: ../../mod/settings.php:587 ../../mod/settings.php:613 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "Annuleren" -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1513 msgid "Discover" msgstr "Ontdekken" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1516 msgid "Imported public streams" msgstr "Openbare streams importeren" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1521 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1524 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1528 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1531 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1526 ../../include/widgets.php:95 +#: ../../include/conversation.php:1536 ../../include/widgets.php:95 msgid "Personal" msgstr "Persoonlijk" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1539 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/conversation.php:1535 ../../mod/connections.php:72 +#: ../../include/conversation.php:1545 ../../mod/connections.php:72 #: ../../mod/connections.php:82 ../../mod/menu.php:112 msgid "New" msgstr "Nieuw" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1548 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1554 msgid "Starred" msgstr "Met ster" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1557 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1564 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1567 msgid "Posts flagged as SPAM" msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/conversation.php:1601 ../../mod/admin.php:1059 +#: ../../include/conversation.php:1611 ../../mod/admin.php:1059 msgid "Channel" msgstr "Kanaal" -#: ../../include/conversation.php:1604 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Berichten in dit kanaal" -#: ../../include/conversation.php:1613 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Over" -#: ../../include/conversation.php:1616 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Profiel" -#: ../../include/conversation.php:1625 ../../include/photos.php:506 +#: ../../include/conversation.php:1635 ../../include/photos.php:506 msgid "Photo Albums" msgstr "Fotoalbums" -#: ../../include/conversation.php:1632 +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1642 ../../include/conversation.php:1645 +#: ../../include/conversation.php:1652 ../../include/conversation.php:1655 msgid "Chatrooms" msgstr "Chatkanalen" -#: ../../include/conversation.php:1658 +#: ../../include/conversation.php:1668 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1668 +#: ../../include/conversation.php:1678 msgid "Manage Webpages" msgstr "Webpagina's beheren" -#: ../../include/conversation.php:1727 +#: ../../include/conversation.php:1737 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "aanwezig" msgstr[1] "aanwezig" -#: ../../include/conversation.php:1730 +#: ../../include/conversation.php:1740 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "niet aanwezig" msgstr[1] "niet aanwezig" -#: ../../include/conversation.php:1733 +#: ../../include/conversation.php:1743 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "nog niet beslist" msgstr[1] "nog niet beslist" -#: ../../include/conversation.php:1736 +#: ../../include/conversation.php:1746 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "eens" msgstr[1] "eens" -#: ../../include/conversation.php:1739 +#: ../../include/conversation.php:1749 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "oneens" msgstr[1] "oneens" -#: ../../include/conversation.php:1742 +#: ../../include/conversation.php:1752 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -1733,6 +1571,10 @@ msgstr "JJJJ-MM-DD of MM-DD" msgid "Required" msgstr "Vereist" +#: ../../include/datetime.php:263 ../../boot.php:2330 +msgid "never" +msgstr "nooit" + #: ../../include/datetime.php:269 msgid "less than a second ago" msgstr "minder dan een seconde geleden" @@ -1822,6 +1664,31 @@ msgstr "Opties kanalengids" msgid "Safe Mode" msgstr "Veilig zoeken" +#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 +#: ../../include/dir_fns.php:143 ../../mod/admin.php:421 ../../mod/api.php:102 +#: ../../mod/connedit.php:644 ../../mod/connedit.php:693 +#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 +#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 +#: ../../mod/photos.php:626 ../../mod/removeme.php:60 +#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1512 +msgid "No" +msgstr "Nee" + +#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 +#: ../../include/dir_fns.php:143 ../../mod/admin.php:423 ../../mod/api.php:101 +#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154 +#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 +#: ../../mod/photos.php:626 ../../mod/removeme.php:60 +#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1512 +msgid "Yes" +msgstr "Ja" + #: ../../include/dir_fns.php:142 msgid "Public Forums Only" msgstr "Alleen openbare forums" @@ -2050,1711 +1917,1740 @@ msgstr "In behandeling" msgid "Cancelled" msgstr "Geannuleerd" -#: ../../include/features.php:45 -msgid "General Features" -msgstr "Algemene functies" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../include/features.php:47 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../include/features.php:47 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../include/features.php:48 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../include/features.php:48 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" +#: ../../include/follow.php:153 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." -#: ../../include/features.php:49 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" +#: ../../include/follow.php:173 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../include/features.php:49 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" +#: ../../include/follow.php:199 +msgid "local account not found." +msgstr "lokale account niet gevonden." -#: ../../include/features.php:50 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" +#: ../../include/follow.php:224 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../include/features.php:50 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." +#: ../../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 "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." -#: ../../include/features.php:51 -msgid "Web Pages" -msgstr "Webpagina's" +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Voeg nieuwe connecties aan deze collectie toe (privacygroep)" -#: ../../include/features.php:51 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" - -#: ../../include/features.php:52 -msgid "Private Notes" -msgstr "Privé-aantekeningen" - -#: ../../include/features.php:52 -msgid "Enables a tool to store notes and reminders" -msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" - -#: ../../include/features.php:53 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" +#: ../../include/group.php:251 ../../mod/admin.php:900 +msgid "All Channels" +msgstr "Alle kanalen" -#: ../../include/features.php:53 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" +#: ../../include/group.php:273 +msgid "edit" +msgstr "bewerken" -#: ../../include/features.php:54 -msgid "Photo Location" -msgstr "Fotolocatie" +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Collecties" -#: ../../include/features.php:54 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Collectie bewerken" -#: ../../include/features.php:56 -msgid "Expert Mode" -msgstr "Expertmodus" +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Nieuwe collectie toevoegen" -#: ../../include/features.php:56 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" -#: ../../include/features.php:57 -msgid "Premium Channel" -msgstr "Premiumkanaal" +#: ../../include/group.php:300 ../../include/widgets.php:275 +msgid "add" +msgstr "toevoegen" -#: ../../include/features.php:57 +#: ../../include/import.php:23 msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../include/features.php:62 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../include/features.php:64 -msgid "Use Markdown" -msgstr "Markdown gebruiken" +#: ../../include/import.php:80 ../../mod/import.php:139 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../include/features.php:64 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" -#: ../../include/features.php:65 -msgid "Large Photos" -msgstr "Grote foto's" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" -#: ../../include/features.php:65 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] uitklappen" -#: ../../include/features.php:66 ../../include/widgets.php:549 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] inklappen" -#: ../../include/features.php:66 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../include/features.php:67 -msgid "Even More Encryption" -msgstr "Extra encryptie" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../include/features.php:67 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 +msgid "everybody" +msgstr "iedereen" -#: ../../include/features.php:68 -msgid "Enable Voting Tools" -msgstr "Peilingen inschakelen" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../include/features.php:68 -msgid "Provide a class of post which others can vote on" -msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../include/features.php:69 -msgid "Delayed Posting" -msgstr "Berichten uitstellen" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." -#: ../../include/features.php:69 -msgid "Allow posts to be published at a later date" -msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../include/features.php:70 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Dubbele berichten/reacties tegenhouden" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../include/features.php:70 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Beoordeel dit kanaal (dit is openbaar)" -#: ../../include/features.php:76 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" +#: ../../include/js_strings.php:20 ../../mod/connedit.php:703 +#: ../../mod/rate.php:157 +msgid "Rating" +msgstr "Beoordeling" -#: ../../include/features.php:77 -msgid "Search by Date" -msgstr "Zoek op datum" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Omschrijving (optioneel)" -#: ../../include/features.php:77 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Vul een internetadres/URL in:" -#: ../../include/features.php:78 -msgid "Collections Filter" -msgstr "Filter op collecties" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" -#: ../../include/features.php:78 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" +#: ../../include/js_strings.php:25 ../../mod/events.php:452 +#: ../../mod/profiles.php:464 ../../mod/pubsites.php:28 +msgid "Location" +msgstr "Locatie" -#: ../../include/features.php:79 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/features.php:79 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/features.php:80 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "geleden" -#: ../../include/features.php:80 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "vanaf nu" -#: ../../include/features.php:81 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../include/features.php:81 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../include/features.php:82 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minuten" -#: ../../include/features.php:82 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "ongeveer een uur" -#: ../../include/features.php:83 -msgid "Connection Filtering" -msgstr "Berichtenfilters" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../include/features.php:83 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "een dag" -#: ../../include/features.php:84 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d dagen" -#: ../../include/features.php:84 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../include/features.php:89 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d maanden" -#: ../../include/features.php:90 -msgid "Community Tagging" -msgstr "Taggen door anderen" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../include/features.php:90 -msgid "Ability to tag existing posts" -msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d jaren" -#: ../../include/features.php:91 -msgid "Post Categories" -msgstr "Categorieën berichten" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/features.php:91 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/features.php:92 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" +#: ../../include/js_strings.php:45 ../../include/text.php:1183 +msgid "January" +msgstr "januari" -#: ../../include/features.php:93 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" +#: ../../include/js_strings.php:46 ../../include/text.php:1183 +msgid "February" +msgstr "februari" -#: ../../include/features.php:93 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" +#: ../../include/js_strings.php:47 ../../include/text.php:1183 +msgid "March" +msgstr "maart" -#: ../../include/features.php:94 -msgid "Star Posts" -msgstr "Geef berichten een ster" +#: ../../include/js_strings.php:48 ../../include/text.php:1183 +msgid "April" +msgstr "april" -#: ../../include/features.php:94 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mei" -#: ../../include/features.php:95 -msgid "Tag Cloud" -msgstr "Tagwolk" +#: ../../include/js_strings.php:50 ../../include/text.php:1183 +msgid "June" +msgstr "juni" -#: ../../include/features.php:95 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" +#: ../../include/js_strings.php:51 ../../include/text.php:1183 +msgid "July" +msgstr "juli" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../include/js_strings.php:52 ../../include/text.php:1183 +msgid "August" +msgstr "augustus" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../include/js_strings.php:53 ../../include/text.php:1183 +msgid "September" +msgstr "september" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../include/js_strings.php:54 ../../include/text.php:1183 +msgid "October" +msgstr "oktober" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../include/js_strings.php:55 ../../include/text.php:1183 +msgid "November" +msgstr "november" -#: ../../include/follow.php:153 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/js_strings.php:56 ../../include/text.php:1183 +msgid "December" +msgstr "december" -#: ../../include/follow.php:173 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "jan" -#: ../../include/follow.php:199 -msgid "local account not found." -msgstr "lokale account niet gevonden." +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" -#: ../../include/follow.php:224 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mrt" -#: ../../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 "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "apr" -#: ../../include/group.php:232 -msgid "Add new connections to this collection (privacy group)" -msgstr "Voeg nieuwe connecties aan deze collectie toe (privacy-groep)" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "mei" -#: ../../include/group.php:251 ../../mod/admin.php:900 -msgid "All Channels" -msgstr "Alle kanalen" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../include/group.php:273 -msgid "edit" -msgstr "bewerken" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../include/group.php:295 -msgid "Collections" -msgstr "Collecties" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "aug" -#: ../../include/group.php:296 -msgid "Edit collection" -msgstr "Collectie bewerken" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../include/group.php:297 -msgid "Add new collection" -msgstr "Nieuwe collectie toevoegen" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "okt" -#: ../../include/group.php:298 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../include/group.php:300 ../../include/widgets.php:275 -msgid "add" -msgstr "toevoegen" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dec" -#: ../../include/identity.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" +#: ../../include/js_strings.php:69 ../../include/text.php:1179 +msgid "Sunday" +msgstr "zondag" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" +#: ../../include/js_strings.php:70 ../../include/text.php:1179 +msgid "Monday" +msgstr "maandag" -#: ../../include/identity.php:69 -msgid "Name too long" -msgstr "Naam te lang" +#: ../../include/js_strings.php:71 ../../include/text.php:1179 +msgid "Tuesday" +msgstr "dinsdag" -#: ../../include/identity.php:181 -msgid "No account identifier" -msgstr "Geen account-identificator" +#: ../../include/js_strings.php:72 ../../include/text.php:1179 +msgid "Wednesday" +msgstr "woensdag" -#: ../../include/identity.php:193 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" +#: ../../include/js_strings.php:73 ../../include/text.php:1179 +msgid "Thursday" +msgstr "donderdag" -#: ../../include/identity.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." +#: ../../include/js_strings.php:74 ../../include/text.php:1179 +msgid "Friday" +msgstr "vrijdag" -#: ../../include/identity.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." +#: ../../include/js_strings.php:75 ../../include/text.php:1179 +msgid "Saturday" +msgstr "zaterdag" -#: ../../include/identity.php:288 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "zo" -#: ../../include/identity.php:346 -msgid "Default Profile" -msgstr "Standaardprofiel" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "ma" -#: ../../include/identity.php:390 ../../include/identity.php:391 -#: ../../include/identity.php:398 ../../include/profile_selectors.php:80 -#: ../../include/widgets.php:430 ../../mod/settings.php:338 -#: ../../mod/settings.php:342 ../../mod/settings.php:343 -#: ../../mod/settings.php:346 ../../mod/settings.php:357 -#: ../../mod/connedit.php:582 -msgid "Friends" -msgstr "Vrienden" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "di" -#: ../../include/identity.php:770 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "wo" -#: ../../include/identity.php:816 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 -#: ../../mod/profile.php:16 ../../mod/webpages.php:29 -msgid "Requested profile is not available." -msgstr "Opgevraagd profiel is niet beschikbaar" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "do" -#: ../../include/identity.php:960 ../../mod/profiles.php:782 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vr" -#: ../../include/identity.php:966 -msgid "Profiles" -msgstr "Profielen" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "za" -#: ../../include/identity.php:966 -msgid "Manage/edit profiles" -msgstr "Profielen beheren/bewerken" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "vandaag" -#: ../../include/identity.php:967 ../../mod/profiles.php:783 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "maand" -#: ../../include/identity.php:970 ../../include/nav.php:90 -msgid "Edit Profile" -msgstr "Profiel bewerken" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "week" -#: ../../include/identity.php:982 ../../mod/profiles.php:794 -msgid "Profile Image" -msgstr "Profielfoto" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "dag" -#: ../../include/identity.php:985 -msgid "visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "hele dag" -#: ../../include/identity.php:986 ../../mod/profiles.php:677 -#: ../../mod/profiles.php:798 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/identity.php:1002 ../../include/identity.php:1242 -msgid "Gender:" -msgstr "Geslacht:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/identity.php:1003 ../../include/identity.php:1286 -msgid "Status:" -msgstr "Status:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/identity.php:1004 ../../include/identity.php:1297 -msgid "Homepage:" -msgstr "Homepagina:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/identity.php:1005 -msgid "Online Now" -msgstr "Nu online" +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1507 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/identity.php:1089 ../../include/identity.php:1167 -#: ../../mod/ping.php:318 -msgid "g A l F d" -msgstr "G:i, l d F" +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/identity.php:1090 ../../include/identity.php:1168 -msgid "F d" -msgstr "d F" +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Home" -#: ../../include/identity.php:1135 ../../include/identity.php:1207 -#: ../../mod/ping.php:341 -msgid "[today]" -msgstr "[vandaag]" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Jouw kanaal" -#: ../../include/identity.php:1146 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../include/identity.php:1147 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Bewerk profielen" -#: ../../include/identity.php:1200 -msgid "[No description]" -msgstr "[Geen omschrijving]" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../include/identity.php:1218 -msgid "Event Reminders" -msgstr "Herinneringen" +#: ../../include/nav.php:90 ../../include/identity.php:972 +msgid "Edit Profile" +msgstr "Profiel bewerken" -#: ../../include/identity.php:1219 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../include/identity.php:1240 ../../mod/settings.php:1029 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../include/identity.php:1247 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../include/identity.php:1271 -msgid "j F, Y" -msgstr "F j Y" +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../include/identity.php:1272 -msgid "j F" -msgstr "F j" +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../include/identity.php:1279 -msgid "Birthday:" -msgstr "Geboortedatum:" +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../include/identity.php:1283 ../../mod/directory.php:299 -msgid "Age:" -msgstr "Leeftijd:" +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Inloggen" -#: ../../include/identity.php:1292 +#: ../../include/nav.php:128 #, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/identity.php:1295 ../../mod/profiles.php:699 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../include/identity.php:1299 ../../mod/directory.php:315 -#: ../../mod/profiles.php:701 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" -#: ../../include/identity.php:1301 -msgid "Tags:" -msgstr "Tags:" +#: ../../include/nav.php:145 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/identity.php:1303 ../../mod/profiles.php:702 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" +#: ../../include/nav.php:149 ../../mod/register.php:264 ../../boot.php:1490 +msgid "Register" +msgstr "Registreren" -#: ../../include/identity.php:1305 -msgid "Religion:" -msgstr "Religie:" +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../include/identity.php:1307 ../../mod/directory.php:317 -msgid "About:" -msgstr "Over:" +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../include/identity.php:1309 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" +#: ../../include/nav.php:157 ../../include/widgets.php:92 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apps" -#: ../../include/identity.php:1311 ../../mod/profiles.php:705 -msgid "Likes:" -msgstr "Houdt van:" +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../include/identity.php:1313 ../../mod/profiles.php:706 -msgid "Dislikes:" -msgstr "Houdt niet van:" +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " -#: ../../include/identity.php:1315 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Kanalengids" -#: ../../include/identity.php:1317 -msgid "My other channels:" -msgstr "Mijn andere kanalen" +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "Jouw grid" -#: ../../include/identity.php:1319 -msgid "Musical interests:" -msgstr "Muzikale interesses:" +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" -#: ../../include/identity.php:1321 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Jouw kanaal" -#: ../../include/identity.php:1323 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../include/identity.php:1325 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/nav.php:181 ../../include/text.php:815 +#: ../../mod/connections.php:296 +msgid "Connections" +msgstr "Connecties" -#: ../../include/identity.php:1327 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/identity.php:1329 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/identity.php:1331 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/identity.php:1351 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../include/identity.php:1759 ../../mod/cover_photo.php:236 -msgid "cover photo" -msgstr "omslagfoto" +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/import.php:23 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/import.php:70 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/import.php:80 ../../mod/import.php:139 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../include/nav.php:191 ../../include/widgets.php:578 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../include/items.php:423 ../../index.php:366 ../../mod/dreport.php:6 -#: ../../mod/dreport.php:45 ../../mod/group.php:68 -#: ../../mod/import_items.php:114 ../../mod/like.php:280 -#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../include/nav.php:192 ../../include/widgets.php:583 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../include/items.php:1130 ../../include/items.php:1176 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/nav.php:193 ../../include/widgets.php:588 +msgid "New Message" +msgstr "Nieuw bericht" -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/items.php:1375 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/items.php:1381 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/items.php:1383 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/nav.php:210 ../../include/widgets.php:1281 +msgid "Admin" +msgstr "Beheer" -#: ../../include/items.php:1385 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/items.php:1387 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" -#: ../../include/items.php:4326 ../../mod/admin.php:135 -#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:86 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../include/items.php:4838 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." -msgstr "Collectie niet gevonden." +#: ../../include/network.php:630 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/items.php:4854 -msgid "Collection is empty." -msgstr "Collectie is leeg" +#: ../../include/network.php:1674 +msgid "No Subject" +msgstr "Geen onderwerp" -#: ../../include/items.php:4861 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" -#: ../../include/items.php:4871 ../../mod/connedit.php:692 +#: ../../include/notify.php:21 #, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" -#: ../../include/items.php:4873 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Ingesloten inhoud" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Insluiten uitgeschakeld" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 +#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 +msgid "View" +msgstr "Weergeven" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Acties" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Paginalink" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" -#: ../../include/js_strings.php:13 ../../mod/photos.php:41 -msgid "everybody" -msgstr "iedereen" +#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 +#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:192 +msgid "Created" +msgstr "Aangemaakt" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" +#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 +#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:193 +msgid "Edited" +msgstr "Bewerkt" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan mijn foto's en andere bestanden bekijken" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Beoordeel dit kanaal (dit is openbaar)" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../include/js_strings.php:20 ../../mod/rate.php:157 -#: ../../mod/connedit.php:703 -msgid "Rating" -msgstr "Beoordeling" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Omschrijving (optioneel)" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vul een internetadres/URL in:" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" -#: ../../include/js_strings.php:25 ../../mod/events.php:452 -#: ../../mod/profiles.php:464 ../../mod/pubsites.php:28 -msgid "Location" -msgstr "Locatie" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "geleden" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "vanaf nu" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "minder dan een minuut" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "ongeveer een minuut" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minuten" +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "ongeveer een uur" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "een dag" +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d dagen" +#: ../../include/permissions.php:867 +msgid "Social Networking" +msgstr "Sociaal netwerk" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "ongeveer een maand" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Vrijwel alles openbaar" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d maanden" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Beperkt zichtbaar" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "ongeveer een jaar" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Verborgen kanaal" -#: ../../include/js_strings.php:41 +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Beroemdheid/alleen volgen" + +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Groepsopslag" + +#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Anders" + +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94 +#: ../../mod/photos.php:699 ../../mod/profile_photo.php:147 +#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: ../../include/photos.php:112 #, php-format -msgid "%d years" -msgstr "%d jaren" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/photos.php:119 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/photos.php:146 ../../mod/profile_photo.php:225 +#: ../../mod/cover_photo.php:164 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" -#: ../../include/js_strings.php:45 ../../include/text.php:1183 -msgid "January" -msgstr "januari" +#: ../../include/photos.php:257 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" -#: ../../include/js_strings.php:46 ../../include/text.php:1183 -msgid "February" -msgstr "februari" +#: ../../include/photos.php:297 +msgid "a new photo" +msgstr "een nieuwe foto" -#: ../../include/js_strings.php:47 ../../include/text.php:1183 -msgid "March" -msgstr "maart" +#: ../../include/photos.php:301 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" -#: ../../include/js_strings.php:48 ../../include/text.php:1183 -msgid "April" -msgstr "april" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mei" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 +msgid "Male" +msgstr "Man" -#: ../../include/js_strings.php:50 ../../include/text.php:1183 -msgid "June" -msgstr "juni" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 +msgid "Female" +msgstr "Vrouw" -#: ../../include/js_strings.php:51 ../../include/text.php:1183 -msgid "July" -msgstr "juli" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momenteel man" -#: ../../include/js_strings.php:52 ../../include/text.php:1183 -msgid "August" -msgstr "augustus" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momenteel vrouw" -#: ../../include/js_strings.php:53 ../../include/text.php:1183 -msgid "September" -msgstr "september" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Voornamelijk man" -#: ../../include/js_strings.php:54 ../../include/text.php:1183 -msgid "October" -msgstr "oktober" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" -#: ../../include/js_strings.php:55 ../../include/text.php:1183 -msgid "November" -msgstr "november" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/js_strings.php:56 ../../include/text.php:1183 -msgid "December" -msgstr "december" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksueel" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "jan" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksueel" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mrt" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Genderneutraal" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "apr" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niet gespecificeerd" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "mei" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nog niet beslist" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Mannen" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Vrouwen" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "aug" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Homoseksueel" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "okt" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Geen voorkeur" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Biseksueel" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dec" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autoseksueel" -#: ../../include/js_strings.php:69 ../../include/text.php:1179 -msgid "Sunday" -msgstr "zondag" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Seksuele onthouding" -#: ../../include/js_strings.php:70 ../../include/text.php:1179 -msgid "Monday" -msgstr "maandag" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Maagd" -#: ../../include/js_strings.php:71 ../../include/text.php:1179 -msgid "Tuesday" -msgstr "dinsdag" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Afwijkend" -#: ../../include/js_strings.php:72 ../../include/text.php:1179 -msgid "Wednesday" -msgstr "woensdag" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisj" -#: ../../include/js_strings.php:73 ../../include/text.php:1179 -msgid "Thursday" -msgstr "donderdag" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Veel" -#: ../../include/js_strings.php:74 ../../include/text.php:1179 -msgid "Friday" -msgstr "vrijdag" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Aseksueel" -#: ../../include/js_strings.php:75 ../../include/text.php:1179 -msgid "Saturday" -msgstr "zaterdag" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Alleen" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "zo" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Eenzaam" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "ma" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Beschikbaar" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "di" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Niet beschikbaar" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "wo" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "do" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Smoorverliefd" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vr" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Aan het daten" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "za" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Ontrouw" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "vandaag" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Seksverslaafd" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "maand" +#: ../../include/profile_selectors.php:80 ../../include/identity.php:390 +#: ../../include/identity.php:391 ../../include/identity.php:398 +#: ../../include/widgets.php:430 ../../mod/connedit.php:582 +#: ../../mod/settings.php:338 ../../mod/settings.php:342 +#: ../../mod/settings.php:343 ../../mod/settings.php:346 +#: ../../mod/settings.php:357 +msgid "Friends" +msgstr "Vrienden" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "week" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "dag" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Ongebonden/vluchtig" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "hele dag" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Verloofd" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Getrouwd" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partners" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Samenwonend" -#: ../../include/nav.php:82 ../../include/nav.php:114 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Common-law-huwelijk" -#: ../../include/nav.php:85 ../../include/nav.php:145 -msgid "Home" -msgstr "Home" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Gelukkig" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Niet op zoek" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/nav.php:88 -msgid "Edit Profiles" -msgstr "Bewerk profielen" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Verraden" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Uit elkaar" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Onstabiel" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Gescheiden" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" -#: ../../include/nav.php:97 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" -#: ../../include/nav.php:103 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Onzeker" -#: ../../include/nav.php:107 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Het is ingewikkeld" -#: ../../include/nav.php:111 -msgid "Sign in" -msgstr "Inloggen" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Maakt mij niks uit" -#: ../../include/nav.php:128 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Vraag het me" -#: ../../include/nav.php:131 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" +#: ../../include/security.php:384 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " -#: ../../include/nav.php:131 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" +#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 +msgid "Tags" +msgstr "Tags" -#: ../../include/nav.php:145 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/taxonomy.php:305 +msgid "Keywords" +msgstr "Trefwoorden" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../include/taxonomy.php:326 +msgid "have" +msgstr "heb" -#: ../../include/nav.php:154 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../include/taxonomy.php:326 +msgid "has" +msgstr "heeft" -#: ../../include/nav.php:157 ../../include/widgets.php:92 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Apps" +#: ../../include/taxonomy.php:327 +msgid "want" +msgstr "wil" -#: ../../include/nav.php:157 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../include/taxonomy.php:327 +msgid "wants" +msgstr "wil" -#: ../../include/nav.php:159 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " +#: ../../include/taxonomy.php:328 +msgid "likes" +msgstr "vindt dit leuk" -#: ../../include/nav.php:162 -msgid "Channel Directory" -msgstr "Kanalengids" +#: ../../include/taxonomy.php:329 +msgid "dislikes" +msgstr "vindt dit niet leuk" -#: ../../include/nav.php:174 -msgid "Your grid" -msgstr "Jouw grid" +#: ../../include/zot.php:676 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../include/nav.php:175 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" +#: ../../include/zot.php:692 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/nav.php:177 -msgid "Channel home" -msgstr "Jouw kanaal" +#: ../../include/zot.php:2268 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/nav.php:178 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../include/zot.php:3584 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" -#: ../../include/nav.php:181 ../../mod/connections.php:293 -msgid "Connections" -msgstr "Connecties" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Regelmatig" -#: ../../include/nav.php:184 -msgid "Notices" -msgstr "Notificaties" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Elk uur" -#: ../../include/nav.php:184 -msgid "Notifications" -msgstr "Notificaties" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../include/nav.php:185 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dagelijks" -#: ../../include/nav.php:186 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wekelijks" -#: ../../include/nav.php:188 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Maandelijks" -#: ../../include/nav.php:189 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/nav.php:190 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/nav.php:191 ../../include/widgets.php:578 -msgid "Inbox" -msgstr "Postvak IN" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/nav.php:192 ../../include/widgets.php:583 -msgid "Outbox" -msgstr "Postvak UIT" +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:891 +#: ../../mod/admin.php:900 ../../mod/id.php:15 ../../mod/id.php:16 +#: ../../boot.php:1510 +msgid "Email" +msgstr "E-mail" -#: ../../include/nav.php:193 ../../include/widgets.php:588 -msgid "New Message" -msgstr "Nieuw bericht" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/nav.php:196 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/nav.php:197 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../include/contact_selectors.php:82 +msgid "Zot" +msgstr "Zot" -#: ../../include/nav.php:198 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/nav.php:200 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/nav.php:202 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/nav.php:210 ../../include/widgets.php:1279 -msgid "Admin" -msgstr "Beheer" +#: ../../include/features.php:45 +msgid "General Features" +msgstr "Algemene functies" -#: ../../include/nav.php:210 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../include/features.php:47 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" -#: ../../include/nav.php:246 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" +#: ../../include/features.php:47 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" -#: ../../include/nav.php:247 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/features.php:48 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" -#: ../../include/network.php:630 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../include/features.php:48 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" -#: ../../include/network.php:1673 -msgid "No Subject" -msgstr "Geen onderwerp" +#: ../../include/features.php:49 +msgid "Advanced Profiles" +msgstr "Geavanceerde profielen" -#: ../../include/notify.php:20 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" +#: ../../include/features.php:49 +msgid "Additional profile sections and selections" +msgstr "Extra onderdelen en keuzes voor je profiel" -#: ../../include/notify.php:21 -#, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" +#: ../../include/features.php:50 +msgid "Profile Import/Export" +msgstr "Profiel importen/exporteren" + +#: ../../include/features.php:50 +msgid "Save and load profile details across sites/channels" +msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." -#: ../../include/oembed.php:213 -msgid "Embedded content" -msgstr "Ingesloten inhoud" +#: ../../include/features.php:51 +msgid "Web Pages" +msgstr "Webpagina's" -#: ../../include/oembed.php:222 -msgid "Embedding disabled" -msgstr "Insluiten uitgeschakeld" +#: ../../include/features.php:51 +msgid "Provide managed web pages on your channel" +msgstr "Sta beheerde webpagina's op jouw kanaal toe" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../include/features.php:52 +msgid "Hide Rating" +msgstr "Beoordelingen verbergen" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 -#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 -msgid "View" -msgstr "Weergeven" +#: ../../include/features.php:52 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Acties" +#: ../../include/features.php:53 +msgid "Private Notes" +msgstr "Privé-aantekeningen" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Paginalink" +#: ../../include/features.php:53 +msgid "Enables a tool to store notes and reminders" +msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" +#: ../../include/features.php:54 +msgid "Navigation Channel Select" +msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 -#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:192 -msgid "Created" -msgstr "Aangemaakt" +#: ../../include/features.php:54 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 -#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:193 -msgid "Edited" -msgstr "Bewerkt" +#: ../../include/features.php:55 +msgid "Photo Location" +msgstr "Fotolocatie" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/features.php:55 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../include/features.php:57 +msgid "Expert Mode" +msgstr "Expertmodus" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../include/features.php:57 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan mijn foto's en andere bestanden bekijken" +#: ../../include/features.php:58 +msgid "Premium Channel" +msgstr "Premiumkanaal" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/features.php:58 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" +#: ../../include/features.php:63 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/features.php:65 +msgid "Use Markdown" +msgstr "Markdown gebruiken" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" +#: ../../include/features.php:65 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../include/features.php:66 +msgid "Large Photos" +msgstr "Grote foto's" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/features.php:66 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/features.php:67 ../../include/widgets.php:549 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanaalbronnen" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../include/features.php:67 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" +#: ../../include/features.php:68 +msgid "Even More Encryption" +msgstr "Extra encryptie" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/features.php:68 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/features.php:69 +msgid "Enable Voting Tools" +msgstr "Peilingen inschakelen" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/features.php:69 +msgid "Provide a class of post which others can vote on" +msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" +#: ../../include/features.php:70 +msgid "Delayed Posting" +msgstr "Berichten uitstellen" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../include/features.php:70 +msgid "Allow posts to be published at a later date" +msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/features.php:71 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../include/permissions.php:46 +#: ../../include/features.php:71 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../include/permissions.php:867 -msgid "Social Networking" -msgstr "Sociaal netwerk" +#: ../../include/features.php:77 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -#: ../../include/permissions.php:869 -msgid "Mostly Public" -msgstr "Vrijwel alles openbaar" +#: ../../include/features.php:78 +msgid "Search by Date" +msgstr "Zoek op datum" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -#: ../../include/permissions.php:869 -msgid "Restricted" -msgstr "Beperkt zichtbaar" +#: ../../include/features.php:78 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -msgid "Private" -msgstr "Verborgen kanaal" +#: ../../include/features.php:79 +msgid "Collections (Privacy Groups)" +msgstr "Collecties (privacygroepen)" -#: ../../include/permissions.php:868 -msgid "Community Forum" -msgstr "Groepsforum" +#: ../../include/features.php:79 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" -#: ../../include/permissions.php:869 -msgid "Feed Republish" -msgstr "Feed herpubliceren" +#: ../../include/features.php:80 ../../include/widgets.php:274 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" -#: ../../include/permissions.php:870 -msgid "Special Purpose" -msgstr "Speciaal doel" +#: ../../include/features.php:80 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/permissions.php:870 -msgid "Celebrity/Soapbox" -msgstr "Beroemdheid/alleen volgen" +#: ../../include/features.php:81 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../include/permissions.php:870 -msgid "Group Repository" -msgstr "Groepsopslag" +#: ../../include/features.php:81 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Anders" +#: ../../include/features.php:82 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../include/permissions.php:871 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" +#: ../../include/features.php:82 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94 -#: ../../mod/photos.php:699 ../../mod/profile_photo.php:147 -#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379 -msgid "Profile Photos" -msgstr "Profielfoto's" +#: ../../include/features.php:83 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" + +#: ../../include/features.php:83 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" + +#: ../../include/features.php:84 +msgid "Connection Filtering" +msgstr "Berichtenfilters" -#: ../../include/photos.php:112 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" +#: ../../include/features.php:84 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../include/photos.php:119 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../include/features.php:85 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" -#: ../../include/photos.php:146 ../../mod/profile_photo.php:225 -#: ../../mod/cover_photo.php:164 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" +#: ../../include/features.php:85 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/photos.php:257 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../include/features.php:90 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/photos.php:297 -msgid "a new photo" -msgstr "een nieuwe foto" +#: ../../include/features.php:91 +msgid "Community Tagging" +msgstr "Taggen door anderen" -#: ../../include/photos.php:301 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s plaatste %2$s op %3$s" +#: ../../include/features.php:91 +msgid "Ability to tag existing posts" +msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../include/features.php:92 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Man" +#: ../../include/features.php:92 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Vrouw" +#: ../../include/features.php:93 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momenteel man" +#: ../../include/features.php:94 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momenteel vrouw" +#: ../../include/features.php:94 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Voornamelijk man" +#: ../../include/features.php:95 +msgid "Star Posts" +msgstr "Geef berichten een ster" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" +#: ../../include/features.php:95 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/features.php:96 +msgid "Tag Cloud" +msgstr "Tagwolk" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksueel" +#: ../../include/features.php:96 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksueel" +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Genderneutraal" +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niet gespecificeerd" +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nog niet beslist" +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Mannen" +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Vrouwen" +#: ../../include/identity.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homoseksueel" +#: ../../include/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Geen voorkeur" +#: ../../include/identity.php:772 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Biseksueel" +#: ../../include/identity.php:818 ../../mod/achievements.php:11 +#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29 +#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 +#: ../../mod/profile.php:16 ../../mod/webpages.php:29 +msgid "Requested profile is not available." +msgstr "Opgevraagd profiel is niet beschikbaar" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autoseksueel" +#: ../../include/identity.php:962 ../../mod/profiles.php:782 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Seksuele onthouding" +#: ../../include/identity.php:968 +msgid "Profiles" +msgstr "Profielen" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Maagd" +#: ../../include/identity.php:968 +msgid "Manage/edit profiles" +msgstr "Profielen beheren/bewerken" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Afwijkend" +#: ../../include/identity.php:969 ../../mod/profiles.php:783 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisj" +#: ../../include/identity.php:984 ../../mod/profiles.php:794 +msgid "Profile Image" +msgstr "Profielfoto" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Veel" +#: ../../include/identity.php:987 +msgid "visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Aseksueel" +#: ../../include/identity.php:988 ../../mod/profiles.php:677 +#: ../../mod/profiles.php:798 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Alleen" +#: ../../include/identity.php:1004 ../../include/identity.php:1246 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Eenzaam" +#: ../../include/identity.php:1005 ../../include/identity.php:1290 +msgid "Status:" +msgstr "Status:" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Beschikbaar" +#: ../../include/identity.php:1006 ../../include/identity.php:1301 +msgid "Homepage:" +msgstr "Homepagina:" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Niet beschikbaar" +#: ../../include/identity.php:1007 +msgid "Online Now" +msgstr "Nu online" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" +#: ../../include/identity.php:1093 ../../include/identity.php:1171 +#: ../../mod/ping.php:318 +msgid "g A l F d" +msgstr "G:i, l d F" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Smoorverliefd" +#: ../../include/identity.php:1094 ../../include/identity.php:1172 +msgid "F d" +msgstr "d F" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Aan het daten" +#: ../../include/identity.php:1139 ../../include/identity.php:1211 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[vandaag]" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Ontrouw" +#: ../../include/identity.php:1150 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Seksverslaafd" +#: ../../include/identity.php:1151 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" +#: ../../include/identity.php:1204 +msgid "[No description]" +msgstr "[Geen omschrijving]" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Ongebonden/vluchtig" +#: ../../include/identity.php:1222 +msgid "Event Reminders" +msgstr "Herinneringen" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verloofd" +#: ../../include/identity.php:1223 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Getrouwd" +#: ../../include/identity.php:1244 ../../mod/settings.php:1029 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" +#: ../../include/identity.php:1251 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partners" +#: ../../include/identity.php:1275 +msgid "j F, Y" +msgstr "F j Y" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Samenwonend" +#: ../../include/identity.php:1276 +msgid "j F" +msgstr "F j" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Common-law-huwelijk" +#: ../../include/identity.php:1283 +msgid "Birthday:" +msgstr "Geboortedatum:" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Gelukkig" +#: ../../include/identity.php:1287 ../../mod/directory.php:299 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Niet op zoek" +#: ../../include/identity.php:1296 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/identity.php:1299 ../../mod/profiles.php:699 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Verraden" +#: ../../include/identity.php:1303 ../../mod/directory.php:315 +#: ../../mod/profiles.php:701 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Uit elkaar" +#: ../../include/identity.php:1305 +msgid "Tags:" +msgstr "Tags:" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Onstabiel" +#: ../../include/identity.php:1307 ../../mod/profiles.php:702 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Gescheiden" +#: ../../include/identity.php:1309 +msgid "Religion:" +msgstr "Religie:" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" +#: ../../include/identity.php:1311 ../../mod/directory.php:317 +msgid "About:" +msgstr "Over:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" +#: ../../include/identity.php:1313 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Onzeker" +#: ../../include/identity.php:1315 ../../mod/profiles.php:705 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Het is ingewikkeld" +#: ../../include/identity.php:1317 ../../mod/profiles.php:706 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Maakt mij niks uit" +#: ../../include/identity.php:1319 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Vraag het me" +#: ../../include/identity.php:1321 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../include/security.php:381 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +#: ../../include/identity.php:1323 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 -msgid "Tags" -msgstr "Tags" +#: ../../include/identity.php:1325 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../include/taxonomy.php:305 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../include/identity.php:1327 +msgid "Television:" +msgstr "Televisie:" -#: ../../include/taxonomy.php:326 -msgid "have" -msgstr "heb" +#: ../../include/identity.php:1329 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/taxonomy.php:326 -msgid "has" -msgstr "heeft" +#: ../../include/identity.php:1331 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../include/taxonomy.php:327 -msgid "want" -msgstr "wil" +#: ../../include/identity.php:1333 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../include/taxonomy.php:327 -msgid "wants" -msgstr "wil" +#: ../../include/identity.php:1335 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../include/taxonomy.php:328 -msgid "likes" -msgstr "vindt dit leuk" +#: ../../include/identity.php:1355 +msgid "Like this thing" +msgstr "Vind dit ding leuk" -#: ../../include/taxonomy.php:329 -msgid "dislikes" -msgstr "vindt dit niet leuk" +#: ../../include/identity.php:1763 ../../mod/cover_photo.php:236 +msgid "cover photo" +msgstr "omslagfoto" #: ../../include/text.php:394 msgid "prev" @@ -3784,16 +3680,10 @@ msgstr "nieuwer" msgid "No connections" msgstr "Geen connecties" -#: ../../include/text.php:815 +#: ../../include/text.php:828 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d connectie" -msgstr[1] "%d connecties" - -#: ../../include/text.php:828 ../../mod/viewconnections.php:101 -msgid "View Connections" -msgstr "Connecties weergeven" +msgid "View all %s connections" +msgstr "Toon alle %s connecties" #: ../../include/text.php:886 ../../include/text.php:898 #: ../../include/widgets.php:192 ../../mod/admin.php:1568 @@ -4002,23 +3892,6 @@ msgstr "Lay-outs" msgid "Pages" msgstr "Pagina's" -#: ../../include/zot.php:676 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:692 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " - -#: ../../include/zot.php:2268 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - -#: ../../include/zot.php:3584 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" - #: ../../include/widgets.php:93 msgid "System" msgstr "Systeem" @@ -4209,107 +4082,184 @@ msgstr "Voorgestelde chatkanalen" msgid "photo/image" msgstr "foto/afbeelding" -#: ../../include/widgets.php:1116 ../../include/widgets.php:1118 +#: ../../include/widgets.php:1115 +msgid "Rating Tools" +msgstr "Beoordelingen" + +#: ../../include/widgets.php:1119 ../../include/widgets.php:1121 msgid "Rate Me" msgstr "Beoordeel mij" -#: ../../include/widgets.php:1122 +#: ../../include/widgets.php:1124 msgid "View Ratings" msgstr "Bekijk beoordelingen" -#: ../../include/widgets.php:1133 +#: ../../include/widgets.php:1135 msgid "Public Hubs" msgstr "Openbare hubs" -#: ../../include/widgets.php:1181 +#: ../../include/widgets.php:1183 msgid "Forums" msgstr "Forums" -#: ../../include/widgets.php:1210 +#: ../../include/widgets.php:1212 msgid "Tasks" msgstr "Taken" -#: ../../include/widgets.php:1219 +#: ../../include/widgets.php:1221 msgid "Documentation" msgstr "Documentatie" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1223 msgid "Project/Site Information" msgstr "Project- en hub-informatie" -#: ../../include/widgets.php:1222 +#: ../../include/widgets.php:1224 msgid "For Members" msgstr "Voor leden" -#: ../../include/widgets.php:1223 +#: ../../include/widgets.php:1225 msgid "For Administrators" msgstr "Voor beheerders" -#: ../../include/widgets.php:1224 +#: ../../include/widgets.php:1226 msgid "For Developers" msgstr "Voor ontwikkelaars" -#: ../../include/widgets.php:1249 ../../mod/admin.php:452 +#: ../../include/widgets.php:1251 ../../mod/admin.php:452 msgid "Site" msgstr "Hub-instellingen" -#: ../../include/widgets.php:1250 +#: ../../include/widgets.php:1252 msgid "Accounts" msgstr "Accounts" -#: ../../include/widgets.php:1251 ../../mod/admin.php:1051 +#: ../../include/widgets.php:1253 ../../mod/admin.php:1051 msgid "Channels" msgstr "Kanalen" -#: ../../include/widgets.php:1253 ../../mod/admin.php:1166 +#: ../../include/widgets.php:1255 ../../mod/admin.php:1166 #: ../../mod/admin.php:1227 msgid "Plugins" msgstr "Plug-ins" -#: ../../include/widgets.php:1254 ../../mod/admin.php:1388 +#: ../../include/widgets.php:1256 ../../mod/admin.php:1388 #: ../../mod/admin.php:1422 msgid "Themes" msgstr "Thema's" -#: ../../include/widgets.php:1255 +#: ../../include/widgets.php:1257 msgid "Inspect queue" msgstr "Inspecteer berichtenwachtrij" -#: ../../include/widgets.php:1256 +#: ../../include/widgets.php:1258 msgid "Profile Config" msgstr "Profielconfiguratie" -#: ../../include/widgets.php:1257 +#: ../../include/widgets.php:1259 msgid "DB updates" msgstr "Database-updates" -#: ../../include/widgets.php:1275 ../../include/widgets.php:1281 -#: ../../mod/admin.php:1507 -msgid "Logs" -msgstr "Logboeken" +#: ../../include/widgets.php:1277 ../../include/widgets.php:1283 +#: ../../mod/admin.php:1507 +msgid "Logs" +msgstr "Logboeken" + +#: ../../include/widgets.php:1282 +msgid "Plugin Features" +msgstr "Plug-in-opties" + +#: ../../include/widgets.php:1284 +msgid "User registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../include/widgets.php:1362 ../../mod/photos.php:748 +#: ../../mod/photos.php:1283 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../include/widgets.php:1379 ../../mod/photos.php:779 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../include/items.php:423 ../../index.php:370 ../../mod/dreport.php:6 +#: ../../mod/dreport.php:45 ../../mod/group.php:68 +#: ../../mod/import_items.php:108 ../../mod/like.php:280 +#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: ../../include/items.php:1130 ../../include/items.php:1176 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:1375 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." + +#: ../../include/items.php:1381 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." + +#: ../../include/items.php:1383 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." + +#: ../../include/items.php:1385 +msgid "Visible to approved connections." +msgstr "Voor alle geaccepteerde connecties zichtbaar." + +#: ../../include/items.php:1387 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." + +#: ../../include/items.php:4328 ../../mod/admin.php:135 +#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: ../../include/items.php:4840 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Collectie niet gevonden." -#: ../../include/widgets.php:1280 -msgid "Plugin Features" -msgstr "Plug-in-opties" +#: ../../include/items.php:4856 +msgid "Collection is empty." +msgstr "Collectie is leeg" -#: ../../include/widgets.php:1282 -msgid "User registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" +#: ../../include/items.php:4863 +#, php-format +msgid "Collection: %s" +msgstr "Collectie: %s" -#: ../../include/widgets.php:1360 ../../mod/photos.php:748 -#: ../../mod/photos.php:1283 -msgid "View Photo" -msgstr "Foto weergeven" +#: ../../include/items.php:4873 ../../mod/connedit.php:692 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../include/widgets.php:1377 ../../mod/photos.php:779 -msgid "Edit Album" -msgstr "Album bewerken" +#: ../../include/items.php:4875 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../index.php:238 ../../mod/help.php:213 +#: ../../index.php:242 ../../mod/help.php:213 msgid "Not Found" msgstr "Niet gevonden" -#: ../../index.php:241 ../../mod/block.php:75 ../../mod/display.php:110 +#: ../../index.php:245 ../../mod/block.php:75 ../../mod/display.php:110 #: ../../mod/help.php:216 ../../mod/page.php:89 msgid "Page not found." msgstr "Pagina niet gevonden." @@ -4701,7 +4651,7 @@ msgid "" msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." #: ../../mod/admin.php:495 -msgid "Expiration period in days for imported (matrix/network) content" +msgid "Expiration period in days for imported (grid/network) content" msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." #: ../../mod/admin.php:495 @@ -4741,7 +4691,7 @@ msgstr "voor kanaal" msgid "on server" msgstr "op hub" -#: ../../mod/admin.php:618 ../../mod/connections.php:267 +#: ../../mod/admin.php:618 ../../mod/connections.php:266 msgid "Status" msgstr "Status" @@ -4870,7 +4820,7 @@ msgstr "Tijd/datum verzoek" msgid "No registrations." msgstr "Geen verzoeken." -#: ../../mod/admin.php:893 ../../mod/connedit.php:719 +#: ../../mod/admin.php:893 ../../mod/connections.php:271 msgid "Approve" msgstr "Goedkeuren" @@ -5302,129 +5252,388 @@ msgstr "Veel voorkomende connecties" msgid "No connections in common." msgstr "Geen gemeenschappelijke connecties." -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Ga verder" +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Ga verder" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../mod/connections.php:52 ../../mod/connections.php:157 +#: ../../mod/connections.php:238 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: ../../mod/connections.php:57 ../../mod/connections.php:164 +#: ../../mod/connections.php:237 +msgid "Ignored" +msgstr "Genegeerd" + +#: ../../mod/connections.php:62 ../../mod/connections.php:178 +#: ../../mod/connections.php:236 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../mod/connections.php:67 ../../mod/connections.php:171 +#: ../../mod/connections.php:235 +msgid "Archived" +msgstr "Gearchiveerd" + +#: ../../mod/connections.php:134 +msgid "New Connections" +msgstr "Nieuwe connecties" + +#: ../../mod/connections.php:137 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" + +#: ../../mod/connections.php:141 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle connecties" + +#: ../../mod/connections.php:144 +msgid "Show all connections" +msgstr "Toon alle connecties" + +#: ../../mod/connections.php:160 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" + +#: ../../mod/connections.php:167 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" + +#: ../../mod/connections.php:174 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" + +#: ../../mod/connections.php:181 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" + +#: ../../mod/connections.php:234 +msgid "Pending approval" +msgstr "Moet nog geaccepteerd worden" + +#: ../../mod/connections.php:250 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:251 +msgid "Edit connection" +msgstr "Connectie bewerken" + +#: ../../mod/connections.php:252 +msgid "Delete connection" +msgstr "Connectie verwijderen" + +#: ../../mod/connections.php:261 +msgid "Channel address" +msgstr "Kanaaladres" + +#: ../../mod/connections.php:263 +msgid "Network" +msgstr "Netwerk" + +#: ../../mod/connections.php:268 +msgid "Connected" +msgstr "Verbonden" + +#: ../../mod/connections.php:270 +msgid "Approve connection" +msgstr "Connectie accepteren" + +#: ../../mod/connections.php:272 +msgid "Recent activity" +msgstr "Recente activiteit" + +#: ../../mod/connections.php:301 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" + +#: ../../mod/connections.php:302 +msgid "Connections search" +msgstr "Connecties zoeken" + +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." + +#: ../../mod/connedit.php:223 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." + +#: ../../mod/connedit.php:225 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." + +#: ../../mod/connedit.php:272 +msgid "is now connected to" +msgstr "is nu verbonden met" + +#: ../../mod/connedit.php:398 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." + +#: ../../mod/connedit.php:412 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" + +#: ../../mod/connedit.php:427 ../../mod/connedit.php:436 +#: ../../mod/connedit.php:445 ../../mod/connedit.php:454 +#: ../../mod/connedit.php:467 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." + +#: ../../mod/connedit.php:491 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" + +#: ../../mod/connedit.php:510 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" + +#: ../../mod/connedit.php:514 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" + +#: ../../mod/connedit.php:517 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" + +#: ../../mod/connedit.php:521 +msgid "Recent Activity" +msgstr "Recente activiteit/berichten" + +#: ../../mod/connedit.php:524 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" + +#: ../../mod/connedit.php:531 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" + +#: ../../mod/connedit.php:532 +msgid "This connection is blocked!" +msgstr "Deze connectie is geblokkeerd!" + +#: ../../mod/connedit.php:536 +msgid "Unignore" +msgstr "Niet meer negeren" + +#: ../../mod/connedit.php:536 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Negeren" + +#: ../../mod/connedit.php:539 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" + +#: ../../mod/connedit.php:540 +msgid "This connection is ignored!" +msgstr "Deze connectie wordt genegeerd!" + +#: ../../mod/connedit.php:544 +msgid "Unarchive" +msgstr "Niet meer archiveren" + +#: ../../mod/connedit.php:544 +msgid "Archive" +msgstr "Archiveren" + +#: ../../mod/connedit.php:547 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" + +#: ../../mod/connedit.php:548 +msgid "This connection is archived!" +msgstr "Deze connectie is gearchiveerd!" + +#: ../../mod/connedit.php:552 +msgid "Unhide" +msgstr "Niet meer verbergen" + +#: ../../mod/connedit.php:552 +msgid "Hide" +msgstr "Verbergen" + +#: ../../mod/connedit.php:555 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../mod/connedit.php:556 +msgid "This connection is hidden!" +msgstr "Deze connectie is verborgen!" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../mod/connedit.php:563 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." +#: ../../mod/connedit.php:644 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" +#: ../../mod/connedit.php:644 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" +#: ../../mod/connedit.php:649 +msgid "Set Affinity" +msgstr "Verwantschapsfilter instellen" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." +#: ../../mod/connedit.php:652 +msgid "Set Profile" +msgstr "Profiel instellen" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " +#: ../../mod/connedit.php:655 +msgid "Set Affinity & Profile" +msgstr "Verwantschapsfilter en profiel instellen" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../mod/connedit.php:688 +msgid "none" +msgstr "geen" -#: ../../mod/connections.php:52 ../../mod/connections.php:157 -#: ../../mod/connections.php:238 -msgid "Blocked" -msgstr "Geblokkeerd" +#: ../../mod/connedit.php:693 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" -#: ../../mod/connections.php:57 ../../mod/connections.php:164 -#: ../../mod/connections.php:237 -msgid "Ignored" -msgstr "Genegeerd" +#: ../../mod/connedit.php:695 +msgid "This connection's primary address is" +msgstr "Het primaire kanaaladres van deze connectie is" -#: ../../mod/connections.php:62 ../../mod/connections.php:178 -#: ../../mod/connections.php:236 -msgid "Hidden" -msgstr "Verborgen" +#: ../../mod/connedit.php:696 +msgid "Available locations:" +msgstr "Beschikbare locaties:" -#: ../../mod/connections.php:67 ../../mod/connections.php:171 -#: ../../mod/connections.php:235 -msgid "Archived" -msgstr "Gearchiveerd" +#: ../../mod/connedit.php:700 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Nieuwe connecties" +#: ../../mod/connedit.php:702 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" +#: ../../mod/connedit.php:704 +msgid "Slide to adjust your rating" +msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../mod/connections.php:141 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../mod/connedit.php:705 ../../mod/connedit.php:710 +msgid "Optionally explain your rating" +msgstr "Verklaar jouw beoordeling (niet verplicht)" -#: ../../mod/connections.php:144 -msgid "Show all connections" -msgstr "Toon alle connecties" +#: ../../mod/connedit.php:707 +msgid "Custom Filter" +msgstr "Berichtenfilter" -#: ../../mod/connections.php:160 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" +#: ../../mod/connedit.php:708 +msgid "Only import posts with this text" +msgstr "Importeer alleen berichten met deze tekst" -#: ../../mod/connections.php:167 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" +#: ../../mod/connedit.php:708 ../../mod/connedit.php:709 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" -#: ../../mod/connections.php:174 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" +#: ../../mod/connedit.php:709 +msgid "Do not import posts with this text" +msgstr "Importeer geen berichten met deze tekst" -#: ../../mod/connections.php:181 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" +#: ../../mod/connedit.php:711 +msgid "This information is public!" +msgstr "Deze informatie is openbaar!" -#: ../../mod/connections.php:234 -msgid "Pending" -msgstr "Nog niet goedgekeurd" +#: ../../mod/connedit.php:716 +msgid "Connection Pending Approval" +msgstr "Connectie moet nog geaccepteerd worden" -#: ../../mod/connections.php:250 +#: ../../mod/connedit.php:719 +msgid "inherited" +msgstr "geërfd" + +#: ../../mod/connedit.php:721 #, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../mod/connections.php:251 -msgid "Edit connection" -msgstr "Connectie bewerken" +#: ../../mod/connedit.php:723 +msgid "Their Settings" +msgstr "Hun instellingen" -#: ../../mod/connections.php:252 -msgid "Delete connection" -msgstr "Connectie verwijderen" +#: ../../mod/connedit.php:724 +msgid "My Settings" +msgstr "Mijn instellingen" -#: ../../mod/connections.php:269 -msgid "Connected" -msgstr "Verbonden" +#: ../../mod/connedit.php:726 +msgid "Individual Permissions" +msgstr "Individuele permissies" -#: ../../mod/connections.php:298 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" +#: ../../mod/connedit.php:727 +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 "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." -#: ../../mod/connections.php:299 -msgid "Connections search" -msgstr "Connecties zoeken" +#: ../../mod/connedit.php:728 +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 "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " + +#: ../../mod/connedit.php:729 +msgid "Last update:" +msgstr "Laatste wijziging:" #: ../../mod/dav.php:121 msgid "$Projectname channel" @@ -5922,7 +6131,7 @@ msgstr "Zoek documentatie" msgid "Help:" msgstr "Hulp:" -#: ../../mod/help.php:237 +#: ../../mod/help.php:239 msgid "$Projectname Documentation" msgstr "$Projectname-documentatie" @@ -6054,7 +6263,7 @@ msgid "" "or provide an export file." msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../mod/import.php:516 ../../mod/import_items.php:121 +#: ../../mod/import.php:516 ../../mod/import_items.php:115 msgid "File to Upload" msgstr "Bestand om te uploaden" @@ -6098,15 +6307,15 @@ msgid "" "only once and leave this page open until finished." msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." -#: ../../mod/import_items.php:101 +#: ../../mod/import_items.php:98 msgid "Import completed" msgstr "Importeren voltooid" -#: ../../mod/import_items.php:119 +#: ../../mod/import_items.php:113 msgid "Import Items" msgstr "Importeer items" -#: ../../mod/import_items.php:120 +#: ../../mod/import_items.php:114 msgid "" "Use this form to import existing posts and content from an export file." msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." @@ -6193,24 +6402,24 @@ msgstr "Leeg bericht geannuleerd" msgid "Executable content type not permitted to this channel." msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../mod/item.php:822 +#: ../../mod/item.php:824 msgid "Duplicate post suppressed." msgstr "Dubbel bericht tegengehouden." -#: ../../mod/item.php:953 +#: ../../mod/item.php:954 msgid "System error. Post not saved." msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../mod/item.php:1220 +#: ../../mod/item.php:1221 msgid "Unable to obtain post information from database." msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." -#: ../../mod/item.php:1227 +#: ../../mod/item.php:1228 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../mod/item.php:1234 +#: ../../mod/item.php:1235 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." @@ -6347,86 +6556,17 @@ msgstr "Nu synchroniseren" #: ../../mod/locs.php:118 msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." - -#: ../../mod/locs.php:119 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." - -#: ../../mod/locs.php:120 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" - -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." -#: ../../mod/lostpass.php:124 +#: ../../mod/locs.php:119 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "E-mailadres" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../mod/locs.php:120 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." #: ../../mod/magic.php:69 msgid "Hub not found." @@ -6871,10 +7011,6 @@ msgstr "Ongeldige verzoek identificator (request identifier)" msgid "Discard" msgstr "Annuleren" -#: ../../mod/notifications.php:51 ../../mod/connedit.php:536 -msgid "Ignore" -msgstr "Negeren" - #: ../../mod/notifications.php:94 ../../mod/notify.php:53 msgid "No more system notifications." msgstr "Geen systeemnotificaties meer." @@ -6920,23 +7056,23 @@ msgid "" " to correctly use this feature." msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " -#: ../../mod/pdledit.php:13 +#: ../../mod/pdledit.php:14 msgid "Layout updated." msgstr "Lay-out bijgewerkt." -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +#: ../../mod/pdledit.php:29 ../../mod/pdledit.php:54 msgid "Edit System Page Description" msgstr "Systeempagina's bewerken" -#: ../../mod/pdledit.php:48 +#: ../../mod/pdledit.php:49 msgid "Layout not found." msgstr "Lay-out niet gevonden." -#: ../../mod/pdledit.php:54 +#: ../../mod/pdledit.php:55 msgid "Module Name:" msgstr "Modulenaam:" -#: ../../mod/pdledit.php:55 +#: ../../mod/pdledit.php:56 msgid "Layout Help" msgstr "Lay-out-hulp" @@ -7551,10 +7687,6 @@ msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" msgid "No ratings" msgstr "Geen beoordelingen" -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Waarderingen" - #: ../../mod/ratings.php:100 msgid "Rating: " msgstr "Waardering: " @@ -7995,7 +8127,7 @@ msgid "(comments displayed separately)" msgstr "(reacties worden afzonderlijk weergeven)" #: ../../mod/settings.php:849 -msgid "Use blog/list mode on matrix page" +msgid "Use blog/list mode on grid page" msgstr "Gebruik blog/lijst-modus op gridpagina" #: ../../mod/settings.php:850 @@ -8007,7 +8139,7 @@ msgid "click to expand content exceeding this height" msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" #: ../../mod/settings.php:851 -msgid "Matrix page max height of content (in pixels)" +msgid "Grid page max height of content (in pixels)" msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" #: ../../mod/settings.php:885 @@ -8233,7 +8365,7 @@ msgid "Show visual notifications including:" msgstr "Toon de volgende zichtbare notificaties:" #: ../../mod/settings.php:1087 -msgid "Unseen matrix activity" +msgid "Unseen grid activity" msgstr "Niet bekeken grid-activiteit" #: ../../mod/settings.php:1088 @@ -8657,354 +8789,173 @@ msgid "" " write access to this folder." msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../mod/setup.php:593 -#, 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 "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." - -#: ../../mod/setup.php:596 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" - -#: ../../mod/setup.php:612 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" - -#: ../../mod/setup.php:616 -msgid "store is writable" -msgstr "store is writable" - -#: ../../mod/setup.php:649 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." - -#: ../../mod/setup.php:650 -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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" - -#: ../../mod/setup.php:651 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." - -#: ../../mod/setup.php:652 -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 "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." - -#: ../../mod/setup.php:653 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." - -#: ../../mod/setup.php:654 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." - -#: ../../mod/setup.php:656 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" - -#: ../../mod/setup.php:662 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " - -#: ../../mod/setup.php:665 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" - -#: ../../mod/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 "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." - -#: ../../mod/setup.php:698 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." - -#: ../../mod/setup.php:732 -msgid "

What next

" -msgstr "

Wat nu

" - -#: ../../mod/setup.php:733 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." - -#: ../../mod/connedit.php:223 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." - -#: ../../mod/connedit.php:225 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." - -#: ../../mod/connedit.php:272 -msgid "is now connected to" -msgstr "is nu verbonden met" - -#: ../../mod/connedit.php:398 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." - -#: ../../mod/connedit.php:412 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" - -#: ../../mod/connedit.php:427 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:445 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:467 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." - -#: ../../mod/connedit.php:491 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" - -#: ../../mod/connedit.php:510 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" - -#: ../../mod/connedit.php:514 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" - -#: ../../mod/connedit.php:517 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" - -#: ../../mod/connedit.php:521 -msgid "Recent Activity" -msgstr "Kanaal-activiteit" - -#: ../../mod/connedit.php:524 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" - -#: ../../mod/connedit.php:531 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" - -#: ../../mod/connedit.php:532 -msgid "This connection is blocked!" -msgstr "Deze connectie is geblokkeerd!" - -#: ../../mod/connedit.php:536 -msgid "Unignore" -msgstr "Niet meer negeren" - -#: ../../mod/connedit.php:539 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" - -#: ../../mod/connedit.php:540 -msgid "This connection is ignored!" -msgstr "Deze connectie wordt genegeerd!" - -#: ../../mod/connedit.php:544 -msgid "Unarchive" -msgstr "Niet meer archiveren" - -#: ../../mod/connedit.php:544 -msgid "Archive" -msgstr "Archiveren" - -#: ../../mod/connedit.php:547 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" - -#: ../../mod/connedit.php:548 -msgid "This connection is archived!" -msgstr "Deze connectie is gearchiveerd!" - -#: ../../mod/connedit.php:552 -msgid "Unhide" -msgstr "Niet meer verbergen" - -#: ../../mod/connedit.php:552 -msgid "Hide" -msgstr "Verbergen" - -#: ../../mod/connedit.php:555 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" - -#: ../../mod/connedit.php:556 -msgid "This connection is hidden!" -msgstr "Deze connectie is verborgen!" - -#: ../../mod/connedit.php:563 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" - -#: ../../mod/connedit.php:644 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" - -#: ../../mod/connedit.php:644 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" - -#: ../../mod/connedit.php:649 -msgid "Set Affinity" -msgstr "Verwantschapsfilter instellen" - -#: ../../mod/connedit.php:652 -msgid "Set Profile" -msgstr "Profiel instellen" - -#: ../../mod/connedit.php:655 -msgid "Set Affinity & Profile" -msgstr "Verwantschapsfilter en profiel instellen" +#: ../../mod/setup.php:593 +#, 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 "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../mod/connedit.php:688 -msgid "none" -msgstr "geen" +#: ../../mod/setup.php:596 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../mod/connedit.php:693 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" +#: ../../mod/setup.php:612 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" -#: ../../mod/connedit.php:695 -msgid "This connection's primary address is" -msgstr "Het primaire kanaaladres van deze connectie is" +#: ../../mod/setup.php:616 +msgid "store is writable" +msgstr "store is writable" -#: ../../mod/connedit.php:696 -msgid "Available locations:" -msgstr "Beschikbare locaties:" +#: ../../mod/setup.php:649 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../mod/connedit.php:700 +#: ../../mod/setup.php:650 msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." +"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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../mod/connedit.php:702 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" +#: ../../mod/setup.php:651 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../mod/connedit.php:704 -msgid "Slide to adjust your rating" -msgstr "Gebruik de schuif om je beoordeling te geven" +#: ../../mod/setup.php:652 +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 "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../mod/connedit.php:705 ../../mod/connedit.php:710 -msgid "Optionally explain your rating" -msgstr "Verklaar jouw beoordeling (niet verplicht)" +#: ../../mod/setup.php:653 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../mod/connedit.php:707 -msgid "Custom Filter" -msgstr "Berichtenfilter" +#: ../../mod/setup.php:654 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../mod/connedit.php:708 -msgid "Only import posts with this text" -msgstr "Importeer alleen berichten met deze tekst" +#: ../../mod/setup.php:656 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../mod/connedit.php:708 ../../mod/connedit.php:709 +#: ../../mod/setup.php:662 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../mod/connedit.php:709 -msgid "Do not import posts with this text" -msgstr "Importeer geen berichten met deze tekst" +#: ../../mod/setup.php:665 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../mod/connedit.php:711 -msgid "This information is public!" -msgstr "Deze informatie is openbaar!" +#: ../../mod/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 "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: ../../mod/connedit.php:716 -msgid "Connection Pending Approval" -msgstr "Connectie moet nog goedgekeurd worden" +#: ../../mod/setup.php:698 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." -#: ../../mod/connedit.php:717 -msgid "Connection Request" -msgstr "Connectieverzoek" +#: ../../mod/setup.php:732 +msgid "

What next

" +msgstr "

Wat nu

" -#: ../../mod/connedit.php:718 -#, php-format +#: ../../mod/setup.php:733 msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "(%s) wil met jou verbinden. Keur dit connectieverzoek goed om onderling te kunnen communiceren." +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../mod/connedit.php:720 -msgid "Approve Later" -msgstr "Later goedkeuren" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../mod/connedit.php:723 -msgid "inherited" -msgstr "geërfd" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." -#: ../../mod/connedit.php:725 +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" + +#: ../../mod/lostpass.php:40 #, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" + +#: ../../mod/lostpass.php:63 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../mod/connedit.php:727 -msgid "Their Settings" -msgstr "Hun instellingen" +#: ../../mod/lostpass.php:86 ../../boot.php:1516 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../mod/connedit.php:728 -msgid "My Settings" -msgstr "Mijn instellingen" +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../mod/connedit.php:730 -msgid "Individual Permissions" -msgstr "Individuele permissies" +#: ../../mod/lostpass.php:88 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../mod/connedit.php:731 +#: ../../mod/lostpass.php:89 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" + +#: ../../mod/lostpass.php:90 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" + +#: ../../mod/lostpass.php:91 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 "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." + +#: ../../mod/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" + +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../mod/connedit.php:732 +#: ../../mod/lostpass.php:124 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 "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." -#: ../../mod/connedit.php:733 -msgid "Last update:" -msgstr "Laatste wijziging:" +#: ../../mod/lostpass.php:125 +msgid "Email Address" +msgstr "E-mailadres" + +#: ../../mod/lostpass.php:126 +msgid "Reset" +msgstr "Opnieuw instellen" #: ../../mod/sharedwithme.php:94 msgid "Files: shared with me" @@ -9296,6 +9247,10 @@ msgstr "Geen connecties." msgid "Visit %s's profile [%s]" msgstr "Bezoek het profiel van %s [%s]" +#: ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Connecties weergeven" + #: ../../mod/viewsrc.php:40 msgid "Source of Item" msgstr "Bron van item" @@ -9455,3 +9410,52 @@ msgstr "Grootte profielfoto's van berichten instellen" #: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" + +#: ../../boot.php:1319 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s mislukt. Zie foutenlogboek." + +#: ../../boot.php:1322 +#, php-format +msgid "Update Error at %s" +msgstr "Update-fout op %s" + +#: ../../boot.php:1489 +msgid "" +"Create an account to access services and applications within the Hubzilla" +msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" + +#: ../../boot.php:1511 +msgid "Password" +msgstr "Wachtwoord" + +#: ../../boot.php:1512 +msgid "Remember me" +msgstr "Aangemeld blijven" + +#: ../../boot.php:1515 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: ../../boot.php:2137 +msgid "toggle mobile" +msgstr "mobiele weergave omschakelen" + +#: ../../boot.php:2289 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." + +#: ../../boot.php:2292 +#, php-format +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" + +#: ../../boot.php:2329 +msgid "Cron/Scheduled tasks not running." +msgstr "Cron is niet actief" + +#: ../../boot.php:2333 +#, php-format +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 1502bbb68..dca353ba7 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -7,25 +7,6 @@ function string_plural_select_nl($n){ ; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; $a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; -$a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; -$a->strings["Update Error at %s"] = "Update-fout op %s"; -$a->strings["Create an account to access services and applications within the Hubzilla"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla"; -$a->strings["Register"] = "Registreren"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["Login"] = "Inloggen"; -$a->strings["Email"] = "E-mail"; -$a->strings["Password"] = "Wachtwoord"; -$a->strings["Remember me"] = "Aangemeld blijven"; -$a->strings["No"] = "Nee"; -$a->strings["Yes"] = "Ja"; -$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; -$a->strings["Password Reset"] = "Wachtwoord vergeten?"; -$a->strings["toggle mobile"] = "mobiele weergave omschakelen"; -$a->strings["Website SSL certificate is not valid. Please correct."] = "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b."; -$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Probleem met SSL-certificaat voor %s"; -$a->strings["Cron/Scheduled tasks not running."] = "Cron is niet actief"; -$a->strings["never"] = "nooit"; -$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-taken zijn niet actief op %s"; $a->strings["Connect"] = "Verbinden"; $a->strings["New window"] = "Nieuw venster"; $a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; @@ -154,6 +135,7 @@ $a->strings["Public Timeline"] = "Openbare tijdlijn"; $a->strings["Site Admin"] = "Hubbeheerder"; $a->strings["Bookmarks"] = "Bladwijzers"; $a->strings["Address Book"] = "Connecties"; +$a->strings["Login"] = "Inloggen"; $a->strings["Channel Manager"] = "Kanaalbeheer"; $a->strings["Grid"] = "Grid"; $a->strings["Settings"] = "Instellingen"; @@ -225,21 +207,6 @@ $a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; $a->strings["Room not found."] = "Chatkanaal niet gevonden"; $a->strings["Room is full"] = "Chatkanaal is vol"; $a->strings["Default"] = "Standaard"; -$a->strings["Frequently"] = "Regelmatig"; -$a->strings["Hourly"] = "Elk uur"; -$a->strings["Twice daily"] = "Twee keer per dag"; -$a->strings["Daily"] = "Dagelijks"; -$a->strings["Weekly"] = "Wekelijks"; -$a->strings["Monthly"] = "Maandelijks"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; $a->strings["%d invitation available"] = array( 0 => "%d uitnodiging beschikbaar", 1 => "%d uitnodigingen beschikbaar", @@ -291,12 +258,11 @@ $a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; $a->strings["View Source"] = "Bron weergeven"; $a->strings["Follow Thread"] = "Conversatie volgen"; $a->strings["Unfollow Thread"] = "Conversatie niet meer volgen"; -$a->strings["View Status"] = "Status weergeven"; $a->strings["View Profile"] = "Profiel weergeven"; -$a->strings["View Photos"] = "Foto's weergeven"; -$a->strings["Activity/Posts"] = "Kanaal-activiteit"; +$a->strings["Activity/Posts"] = "Activiteit/berichten connectie"; $a->strings["Edit Connection"] = "Connectie bewerken"; -$a->strings["Send PM"] = "Privébericht verzenden"; +$a->strings["Message"] = "Bericht"; +$a->strings["Ratings"] = "Waarderingen"; $a->strings["%s likes this."] = "%s vindt dit leuk."; $a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; $a->strings["%2\$d people like this."] = array( @@ -400,6 +366,7 @@ $a->strings["__ctx:noun__ Abstain"] = array( $a->strings["Miscellaneous"] = "Diversen"; $a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; $a->strings["Required"] = "Vereist"; +$a->strings["never"] = "nooit"; $a->strings["less than a second ago"] = "minder dan een seconde geleden"; $a->strings["year"] = "jaar"; $a->strings["years"] = "jaren"; @@ -421,6 +388,8 @@ $a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; $a->strings["Directory Options"] = "Opties kanalengids"; $a->strings["Safe Mode"] = "Veilig zoeken"; +$a->strings["No"] = "Nee"; +$a->strings["Yes"] = "Ja"; $a->strings["Public Forums Only"] = "Alleen openbare forums"; $a->strings["This Website Only"] = "Alleen deze hub"; $a->strings["\$Projectname Notification"] = "\$Projectname-notificatie"; @@ -469,71 +438,6 @@ $a->strings["Needs Action"] = "Actie vereist"; $a->strings["Completed"] = "Voltooid"; $a->strings["In Process"] = "In behandeling"; $a->strings["Cancelled"] = "Geannuleerd"; -$a->strings["General Features"] = "Algemene functies"; -$a->strings["Content Expiration"] = "Inhoud laten verlopen"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; -$a->strings["Multiple Profiles"] = "Meerdere profielen"; -$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -$a->strings["Advanced Profiles"] = "Geavanceerde profielen"; -$a->strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; -$a->strings["Profile Import/Export"] = "Profiel importen/exporteren"; -$a->strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; -$a->strings["Web Pages"] = "Webpagina's"; -$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -$a->strings["Private Notes"] = "Privé-aantekeningen"; -$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan"; -$a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; -$a->strings["Photo Location"] = "Fotolocatie"; -$a->strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; -$a->strings["Expert Mode"] = "Expertmodus"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; -$a->strings["Premium Channel"] = "Premiumkanaal"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; -$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -$a->strings["Use Markdown"] = "Markdown gebruiken"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."; -$a->strings["Large Photos"] = "Grote foto's"; -$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; -$a->strings["Channel Sources"] = "Kanaalbronnen"; -$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; -$a->strings["Even More Encryption"] = "Extra encryptie"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; -$a->strings["Enable Voting Tools"] = "Peilingen inschakelen"; -$a->strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; -$a->strings["Delayed Posting"] = "Berichten uitstellen"; -$a->strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; -$a->strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; -$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; -$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; -$a->strings["Search by Date"] = "Zoek op datum"; -$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; -$a->strings["Collections Filter"] = "Filter op collecties"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -$a->strings["Network New Tab"] = "Nieuwe netwerktab"; -$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; -$a->strings["Affinity Tool"] = "Verwantschapsfilter"; -$a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; -$a->strings["Connection Filtering"] = "Berichtenfilters"; -$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; -$a->strings["Suggest Channels"] = "Kanalen voorstellen"; -$a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; -$a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -$a->strings["Community Tagging"] = "Taggen door anderen"; -$a->strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; -$a->strings["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; -$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; -$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; -$a->strings["Star Posts"] = "Geef berichten een ster"; -$a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -$a->strings["Tag Cloud"] = "Tagwolk"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; $a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; $a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; $a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; @@ -543,7 +447,7 @@ $a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; $a->strings["local account not found."] = "lokale account niet gevonden."; $a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; $a->strings["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."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -$a->strings["Add new connections to this collection (privacy group)"] = "Voeg nieuwe connecties aan deze collectie toe (privacy-groep)"; +$a->strings["Add new connections to this collection (privacy group)"] = "Voeg nieuwe connecties aan deze collectie toe (privacygroep)"; $a->strings["All Channels"] = "Alle kanalen"; $a->strings["edit"] = "bewerken"; $a->strings["Collections"] = "Collecties"; @@ -551,84 +455,9 @@ $a->strings["Edit collection"] = "Collectie bewerken"; $a->strings["Add new collection"] = "Nieuwe collectie toevoegen"; $a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; $a->strings["add"] = "toevoegen"; -$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -$a->strings["Empty name"] = "Ontbrekende naam"; -$a->strings["Name too long"] = "Naam te lang"; -$a->strings["No account identifier"] = "Geen account-identificator"; -$a->strings["Nickname is required."] = "Bijnaam is verplicht"; -$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -$a->strings["Default Profile"] = "Standaardprofiel"; -$a->strings["Friends"] = "Vrienden"; -$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; -$a->strings["Change profile photo"] = "Profielfoto veranderen"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; -$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; -$a->strings["Edit Profile"] = "Profiel bewerken"; -$a->strings["Profile Image"] = "Profielfoto"; -$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepagina:"; -$a->strings["Online Now"] = "Nu online"; -$a->strings["g A l F d"] = "G:i, l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen omschrijving]"; -$a->strings["Event Reminders"] = "Herinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Full Name:"] = "Volledige naam:"; -$a->strings["Like this channel"] = "Vind dit kanaal leuk"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Geboortedatum:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; -$a->strings["Hometown:"] = "Oorspronkelijk uit:"; -$a->strings["Tags:"] = "Tags:"; -$a->strings["Political Views:"] = "Politieke overtuigingen:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["About:"] = "Over:"; -$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["My other channels:"] = "Mijn andere kanalen"; -$a->strings["Musical interests:"] = "Muzikale interesses:"; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie:"; -$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -$a->strings["Love/Romance:"] = "Liefde/romantiek:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Like this thing"] = "Vind dit ding leuk"; -$a->strings["cover photo"] = "omslagfoto"; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; $a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; $a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["(Unknown)"] = "(Onbekend)"; -$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; -$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Collection not found."] = "Collectie niet gevonden."; -$a->strings["Collection is empty."] = "Collectie is leeg"; -$a->strings["Collection: %s"] = "Collectie: %s"; -$a->strings["Connection: %s"] = "Connectie: %s"; -$a->strings["Connection not found."] = "Connectie niet gevonden."; $a->strings["Delete this item?"] = "Dit item verwijderen?"; $a->strings["[-] show less"] = "[-] minder reacties weergeven"; $a->strings["[+] expand"] = "[+] uitklappen"; @@ -711,12 +540,14 @@ $a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; $a->strings["[no subject]"] = "[geen onderwerp]"; $a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; $a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; +$a->strings["Logout"] = "Uitloggen"; $a->strings["End this session"] = "Beëindig deze sessie"; $a->strings["Home"] = "Home"; $a->strings["Your posts and conversations"] = "Jouw kanaal"; $a->strings["Your profile page"] = "Jouw profielpagina"; $a->strings["Edit Profiles"] = "Bewerk profielen"; $a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Edit Profile"] = "Profiel bewerken"; $a->strings["Edit your profile"] = "Jouw profiel bewerken"; $a->strings["Your photos"] = "Jouw foto's"; $a->strings["Your files"] = "Jouw bestanden"; @@ -728,6 +559,7 @@ $a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; $a->strings["Remote authentication"] = "Authenticatie op afstand"; $a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; $a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registreren"; $a->strings["Create an account"] = "Maak een account aan"; $a->strings["Help and documentation"] = "Hulp en documentatie"; $a->strings["Apps"] = "Apps"; @@ -845,6 +677,7 @@ $a->strings["Infatuated"] = "Smoorverliefd"; $a->strings["Dating"] = "Aan het daten"; $a->strings["Unfaithful"] = "Ontrouw"; $a->strings["Sex Addict"] = "Seksverslaafd"; +$a->strings["Friends"] = "Vrienden"; $a->strings["Friends/Benefits"] = "Vriendschap plus"; $a->strings["Casual"] = "Ongebonden/vluchtig"; $a->strings["Engaged"] = "Verloofd"; @@ -875,6 +708,150 @@ $a->strings["want"] = "wil"; $a->strings["wants"] = "wil"; $a->strings["likes"] = "vindt dit leuk"; $a->strings["dislikes"] = "vindt dit niet leuk"; +$a->strings["Invalid data packet"] = "Datapakket ongeldig"; +$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; +$a->strings["Frequently"] = "Regelmatig"; +$a->strings["Hourly"] = "Elk uur"; +$a->strings["Twice daily"] = "Twee keer per dag"; +$a->strings["Daily"] = "Dagelijks"; +$a->strings["Weekly"] = "Wekelijks"; +$a->strings["Monthly"] = "Maandelijks"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-mail"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot"] = "Zot"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["General Features"] = "Algemene functies"; +$a->strings["Content Expiration"] = "Inhoud laten verlopen"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; +$a->strings["Multiple Profiles"] = "Meerdere profielen"; +$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Advanced Profiles"] = "Geavanceerde profielen"; +$a->strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; +$a->strings["Profile Import/Export"] = "Profiel importen/exporteren"; +$a->strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; +$a->strings["Web Pages"] = "Webpagina's"; +$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +$a->strings["Hide Rating"] = "Beoordelingen verbergen"; +$a->strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "; +$a->strings["Private Notes"] = "Privé-aantekeningen"; +$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan"; +$a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; +$a->strings["Photo Location"] = "Fotolocatie"; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; +$a->strings["Expert Mode"] = "Expertmodus"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; +$a->strings["Premium Channel"] = "Premiumkanaal"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +$a->strings["Use Markdown"] = "Markdown gebruiken"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."; +$a->strings["Large Photos"] = "Grote foto's"; +$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; +$a->strings["Channel Sources"] = "Kanaalbronnen"; +$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; +$a->strings["Even More Encryption"] = "Extra encryptie"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; +$a->strings["Enable Voting Tools"] = "Peilingen inschakelen"; +$a->strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; +$a->strings["Delayed Posting"] = "Berichten uitstellen"; +$a->strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; +$a->strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; +$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; +$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; +$a->strings["Search by Date"] = "Zoek op datum"; +$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; +$a->strings["Collections (Privacy Groups)"] = "Collecties (privacygroepen)"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +$a->strings["Network New Tab"] = "Nieuwe netwerktab"; +$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; +$a->strings["Affinity Tool"] = "Verwantschapsfilter"; +$a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; +$a->strings["Connection Filtering"] = "Berichtenfilters"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; +$a->strings["Suggest Channels"] = "Kanalen voorstellen"; +$a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; +$a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; +$a->strings["Community Tagging"] = "Taggen door anderen"; +$a->strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; +$a->strings["Post Categories"] = "Categorieën berichten"; +$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; +$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; +$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; +$a->strings["Star Posts"] = "Geef berichten een ster"; +$a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; +$a->strings["Tag Cloud"] = "Tagwolk"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +$a->strings["Empty name"] = "Ontbrekende naam"; +$a->strings["Name too long"] = "Naam te lang"; +$a->strings["No account identifier"] = "Geen account-identificator"; +$a->strings["Nickname is required."] = "Bijnaam is verplicht"; +$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +$a->strings["Default Profile"] = "Standaardprofiel"; +$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; +$a->strings["Change profile photo"] = "Profielfoto veranderen"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; +$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; +$a->strings["Profile Image"] = "Profielfoto"; +$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepagina:"; +$a->strings["Online Now"] = "Nu online"; +$a->strings["g A l F d"] = "G:i, l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Herinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["Full Name:"] = "Volledige naam:"; +$a->strings["Like this channel"] = "Vind dit kanaal leuk"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Geboortedatum:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; +$a->strings["Hometown:"] = "Oorspronkelijk uit:"; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Political Views:"] = "Politieke overtuigingen:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["About:"] = "Over:"; +$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["My other channels:"] = "Mijn andere kanalen"; +$a->strings["Musical interests:"] = "Muzikale interesses:"; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie:"; +$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +$a->strings["Love/Romance:"] = "Liefde/romantiek:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Like this thing"] = "Vind dit ding leuk"; +$a->strings["cover photo"] = "omslagfoto"; $a->strings["prev"] = "vorige"; $a->strings["first"] = "eerste"; $a->strings["last"] = "laatste"; @@ -882,11 +859,7 @@ $a->strings["next"] = "volgende"; $a->strings["older"] = "ouder"; $a->strings["newer"] = "nieuwer"; $a->strings["No connections"] = "Geen connecties"; -$a->strings["%d Connection"] = array( - 0 => "%d connectie", - 1 => "%d connecties", -); -$a->strings["View Connections"] = "Connecties weergeven"; +$a->strings["View all %s connections"] = "Toon alle %s connecties"; $a->strings["Save"] = "Opslaan"; $a->strings["poke"] = "aanstoten"; $a->strings["ping"] = "ping"; @@ -938,10 +911,6 @@ $a->strings["Blocks"] = "Blokken"; $a->strings["Menus"] = "Menu's"; $a->strings["Layouts"] = "Lay-outs"; $a->strings["Pages"] = "Pagina's"; -$a->strings["Invalid data packet"] = "Datapakket ongeldig"; -$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; $a->strings["System"] = "Systeem"; $a->strings["Create Personal App"] = "Persoonlijke app maken"; $a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; @@ -989,6 +958,7 @@ $a->strings["Chat Rooms"] = "Chatkanalen"; $a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; $a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; $a->strings["photo/image"] = "foto/afbeelding"; +$a->strings["Rating Tools"] = "Beoordelingen"; $a->strings["Rate Me"] = "Beoordeel mij"; $a->strings["View Ratings"] = "Bekijk beoordelingen"; $a->strings["Public Hubs"] = "Openbare hubs"; @@ -1012,6 +982,22 @@ $a->strings["Plugin Features"] = "Plug-in-opties"; $a->strings["User registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; $a->strings["View Photo"] = "Foto weergeven"; $a->strings["Edit Album"] = "Album bewerken"; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["(Unknown)"] = "(Onbekend)"; +$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +$a->strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; +$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Collection not found."] = "Collectie niet gevonden."; +$a->strings["Collection is empty."] = "Collectie is leeg"; +$a->strings["Collection: %s"] = "Collectie: %s"; +$a->strings["Connection: %s"] = "Connectie: %s"; +$a->strings["Connection not found."] = "Connectie niet gevonden."; $a->strings["Not Found"] = "Niet gevonden"; $a->strings["Page not found."] = "Pagina niet gevonden."; $a->strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; @@ -1100,7 +1086,7 @@ $a->strings["Poll interval"] = "Poll-interval"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; $a->strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; -$a->strings["Expiration period in days for imported (matrix/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; +$a->strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; $a->strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud."; $a->strings["Off"] = "Uit"; $a->strings["On"] = "Aan"; @@ -1276,13 +1262,73 @@ $a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connect $a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; $a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; $a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; -$a->strings["Pending"] = "Nog niet goedgekeurd"; +$a->strings["Pending approval"] = "Moet nog geaccepteerd worden"; $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; $a->strings["Edit connection"] = "Connectie bewerken"; $a->strings["Delete connection"] = "Connectie verwijderen"; +$a->strings["Channel address"] = "Kanaaladres"; +$a->strings["Network"] = "Netwerk"; $a->strings["Connected"] = "Verbonden"; +$a->strings["Approve connection"] = "Connectie accepteren"; +$a->strings["Recent activity"] = "Recente activiteit"; $a->strings["Search your connections"] = "Doorzoek jouw connecties"; $a->strings["Connections search"] = "Connecties zoeken"; +$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; +$a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; +$a->strings["Connection updated."] = "Connectie bijgewerkt."; +$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; +$a->strings["is now connected to"] = "is nu verbonden met"; +$a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; +$a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; +$a->strings["Connection has been removed."] = "Connectie is verwijderd"; +$a->strings["View %s's profile"] = "Profiel van %s weergeven"; +$a->strings["Refresh Permissions"] = "Permissies vernieuwen"; +$a->strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; +$a->strings["Recent Activity"] = "Recente activiteit/berichten"; +$a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; +$a->strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; +$a->strings["Unignore"] = "Niet meer negeren"; +$a->strings["Ignore"] = "Negeren"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; +$a->strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; +$a->strings["Unarchive"] = "Niet meer archiveren"; +$a->strings["Archive"] = "Archiveren"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; +$a->strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; +$a->strings["Unhide"] = "Niet meer verbergen"; +$a->strings["Hide"] = "Verbergen"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; +$a->strings["This connection is hidden!"] = "Deze connectie is verborgen!"; +$a->strings["Delete this connection"] = "Deze connectie verwijderen"; +$a->strings["Approve this connection"] = "Deze connectie accepteren"; +$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; +$a->strings["Set Affinity"] = "Verwantschapsfilter instellen"; +$a->strings["Set Profile"] = "Profiel instellen"; +$a->strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; +$a->strings["none"] = "geen"; +$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +$a->strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; +$a->strings["Available locations:"] = "Beschikbare locaties:"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; +$a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; +$a->strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; +$a->strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; +$a->strings["Custom Filter"] = "Berichtenfilter"; +$a->strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; +$a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; +$a->strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; +$a->strings["This information is public!"] = "Deze informatie is openbaar!"; +$a->strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; +$a->strings["inherited"] = "geërfd"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; +$a->strings["Their Settings"] = "Hun instellingen"; +$a->strings["My Settings"] = "Mijn instellingen"; +$a->strings["Individual Permissions"] = "Individuele permissies"; +$a->strings["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."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; +$a->strings["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."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; +$a->strings["Last update:"] = "Laatste wijziging:"; $a->strings["\$Projectname channel"] = "\$Projectname-kanaal"; $a->strings["Public access denied."] = "Openbare toegang geweigerd."; $a->strings["%d rating"] = array( @@ -1509,21 +1555,6 @@ $a->strings["Sync now"] = "Nu synchroniseren"; $a->strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; $a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; $a->strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -$a->strings["Site Member (%s)"] = "Lid van hub (%s)"; -$a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -$a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -$a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -$a->strings["click here to login"] = "klik dan hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -$a->strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -$a->strings["Email Address"] = "E-mailadres"; -$a->strings["Reset"] = "Opnieuw instellen"; $a->strings["Hub not found."] = "Hub niet gevonden."; $a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; $a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; @@ -1631,7 +1662,6 @@ $a->strings["Channel Type"] = "Kanaaltype"; $a->strings["Read more about roles"] = "Lees meer over kanaaltypes"; $a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; $a->strings["Discard"] = "Annuleren"; -$a->strings["Ignore"] = "Negeren"; $a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; $a->strings["System Notifications"] = "Systeemnotificaties"; $a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; @@ -1794,7 +1824,6 @@ $a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afs $a->strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; $a->strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; $a->strings["No ratings"] = "Geen beoordelingen"; -$a->strings["Ratings"] = "Waarderingen"; $a->strings["Rating: "] = "Waardering: "; $a->strings["Website: "] = "Website: "; $a->strings["Description: "] = "Omschrijving: "; @@ -1898,10 +1927,10 @@ $a->strings["Link post titles to source"] = "Berichtkoppen naar originele locati $a->strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; $a->strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; $a->strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; -$a->strings["Use blog/list mode on matrix page"] = "Gebruik blog/lijst-modus op gridpagina"; +$a->strings["Use blog/list mode on grid page"] = "Gebruik blog/lijst-modus op gridpagina"; $a->strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; $a->strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; -$a->strings["Matrix page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op gridpagina (in pixels)"; +$a->strings["Grid page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op gridpagina (in pixels)"; $a->strings["Nobody except yourself"] = "Niemand, behalve jezelf"; $a->strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; $a->strings["Approved connections"] = "Geaccepteerde connecties"; @@ -1956,7 +1985,7 @@ $a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt $a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; $a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; $a->strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; -$a->strings["Unseen matrix activity"] = "Niet bekeken grid-activiteit"; +$a->strings["Unseen grid activity"] = "Niet bekeken grid-activiteit"; $a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; $a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; $a->strings["Recommended"] = "Aanbevolen"; @@ -2067,64 +2096,22 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; $a->strings["

What next

"] = "

Wat nu

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; -$a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; -$a->strings["Connection updated."] = "Connectie bijgewerkt."; -$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -$a->strings["is now connected to"] = "is nu verbonden met"; -$a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; -$a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -$a->strings["Connection has been removed."] = "Connectie is verwijderd"; -$a->strings["View %s's profile"] = "Profiel van %s weergeven"; -$a->strings["Refresh Permissions"] = "Permissies vernieuwen"; -$a->strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; -$a->strings["Recent Activity"] = "Kanaal-activiteit"; -$a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; -$a->strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; -$a->strings["Unignore"] = "Niet meer negeren"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; -$a->strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; -$a->strings["Unarchive"] = "Niet meer archiveren"; -$a->strings["Archive"] = "Archiveren"; -$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; -$a->strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; -$a->strings["Unhide"] = "Niet meer verbergen"; -$a->strings["Hide"] = "Verbergen"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; -$a->strings["This connection is hidden!"] = "Deze connectie is verborgen!"; -$a->strings["Delete this connection"] = "Deze connectie verwijderen"; -$a->strings["Approve this connection"] = "Deze connectie accepteren"; -$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -$a->strings["Set Affinity"] = "Verwantschapsfilter instellen"; -$a->strings["Set Profile"] = "Profiel instellen"; -$a->strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; -$a->strings["none"] = "geen"; -$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -$a->strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; -$a->strings["Available locations:"] = "Beschikbare locaties:"; -$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; -$a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -$a->strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; -$a->strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; -$a->strings["Custom Filter"] = "Berichtenfilter"; -$a->strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; -$a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; -$a->strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; -$a->strings["This information is public!"] = "Deze informatie is openbaar!"; -$a->strings["Connection Pending Approval"] = "Connectie moet nog goedgekeurd worden"; -$a->strings["Connection Request"] = "Connectieverzoek"; -$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) wil met jou verbinden. Keur dit connectieverzoek goed om onderling te kunnen communiceren."; -$a->strings["Approve Later"] = "Later goedkeuren"; -$a->strings["inherited"] = "geërfd"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -$a->strings["Their Settings"] = "Hun instellingen"; -$a->strings["My Settings"] = "Mijn instellingen"; -$a->strings["Individual Permissions"] = "Individuele permissies"; -$a->strings["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."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; -$a->strings["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."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; -$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +$a->strings["Site Member (%s)"] = "Lid van hub (%s)"; +$a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +$a->strings["Password Reset"] = "Wachtwoord vergeten?"; +$a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +$a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +$a->strings["click here to login"] = "klik dan hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +$a->strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +$a->strings["Email Address"] = "E-mailadres"; +$a->strings["Reset"] = "Opnieuw instellen"; $a->strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; $a->strings["NEW"] = "NIEUW"; $a->strings["Remove all files"] = "Verwijder alle bestanden"; @@ -2188,6 +2175,7 @@ $a->strings["To select all posts for a given month, such as January of this year $a->strings["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)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; $a->strings["No connections."] = "Geen connecties."; $a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +$a->strings["View Connections"] = "Connecties weergeven"; $a->strings["Source of Item"] = "Bron van item"; $a->strings["Page Title"] = "Paginatitel"; $a->strings["Xchan Lookup"] = "Xchan opzoeken"; @@ -2228,3 +2216,14 @@ $a->strings["Left align page content"] = "Inhoud links uitlijnen"; $a->strings["Set minimum opacity of nav bar - to hide it"] = "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)"; $a->strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen"; $a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen"; +$a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; +$a->strings["Update Error at %s"] = "Update-fout op %s"; +$a->strings["Create an account to access services and applications within the Hubzilla"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla"; +$a->strings["Password"] = "Wachtwoord"; +$a->strings["Remember me"] = "Aangemeld blijven"; +$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; +$a->strings["toggle mobile"] = "mobiele weergave omschakelen"; +$a->strings["Website SSL certificate is not valid. Please correct."] = "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b."; +$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Probleem met SSL-certificaat voor %s"; +$a->strings["Cron/Scheduled tasks not running."] = "Cron is niet actief"; +$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-taken zijn niet actief op %s"; -- cgit v1.2.3 From 0db2fe6e39cca8eda1d2f53b3715a67e1bce4c5c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 24 Jan 2016 13:53:18 -0800 Subject: remote delegation issue when already logged in with different account on same site. --- boot.php | 4 ++++ mod/magic.php | 2 ++ version.inc | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 9d80eedb4..d6c02ecc0 100755 --- a/boot.php +++ b/boot.php @@ -1553,6 +1553,10 @@ function goaway($s) { * @return int|bool account_id or false */ function get_account_id() { + + if(intval($_SESSION['account_id'])) + return intval($_SESSION['account_id']); + if(get_app()->account) return intval(get_app()->account['account_id']); diff --git a/mod/magic.php b/mod/magic.php index 2fee87241..12679773b 100644 --- a/mod/magic.php +++ b/mod/magic.php @@ -105,6 +105,7 @@ function magic_init(&$a) { $r = q("select * from channel left join hubloc on channel_hash = hubloc_hash where hubloc_addr = '%s' limit 1", dbesc($delegate) ); + if($r && intval($r[0]['channel_id'])) { $allowed = perm_is_allowed($r[0]['channel_id'],get_observer_hash(),'delegate'); if($allowed) { @@ -112,6 +113,7 @@ function magic_init(&$a) { $_SESSION['delegate'] = get_observer_hash(); $_SESSION['account_id'] = intval($r[0]['channel_account_id']); change_channel($r[0]['channel_id']); + $delegation_success = true; } } diff --git a/version.inc b/version.inc index d884e64a2..7b8a8ab83 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-01-23.1287H +2016-01-24.1288H -- cgit v1.2.3 From baed7d339ee0d5139fe1c93691a4225796e7e08c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 24 Jan 2016 15:20:25 -0800 Subject: make exec the default for proc_run - use system.use_proc_open to use proc_open. Also prohibit delegated channels from manually invoking new_channel under the delegated account. --- boot.php | 6 +++--- mod/new_channel.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/boot.php b/boot.php index d6c02ecc0..b80b76a8a 100755 --- a/boot.php +++ b/boot.php @@ -1728,10 +1728,10 @@ function proc_run($cmd){ proc_close(proc_open($cmd, array(), $foo)); } else { - if(get_config('system','proc_run_use_exec')) - exec($cmdline . ' > /dev/null &'); - else + if(get_config('system','use_proc_open')) proc_close(proc_open($cmdline ." &", array(), $foo)); + else + exec($cmdline . ' > /dev/null &'); } } diff --git a/mod/new_channel.php b/mod/new_channel.php index bec2a3c09..0429bbee7 100644 --- a/mod/new_channel.php +++ b/mod/new_channel.php @@ -64,7 +64,7 @@ function new_channel_post(&$a) { $arr = $_POST; - if(($arr['account_id'] = get_account_id()) === false) { + if((! $a->get_account()) || ($arr['account_id'] = get_account_id()) === false) { notice( t('Permission denied.') . EOL ); return; } @@ -95,7 +95,7 @@ function new_channel_post(&$a) { function new_channel_content(&$a) { - if(! get_account_id()) { + if(! $a->get_account()) { notice( t('Permission denied.') . EOL); return; } -- cgit v1.2.3 From 5e9e1b2c9171905520672f7a833157d7dd53980c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 24 Jan 2016 15:44:16 -0800 Subject: cleanup and add comments about what we're trying to do here --- mod/new_channel.php | 14 ++++++++++++-- mod/thing.php | 1 - 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/mod/new_channel.php b/mod/new_channel.php index 0429bbee7..07b6cfc85 100644 --- a/mod/new_channel.php +++ b/mod/new_channel.php @@ -64,7 +64,14 @@ function new_channel_post(&$a) { $arr = $_POST; - if((! $a->get_account()) || ($arr['account_id'] = get_account_id()) === false) { + $acc = $a->get_account(); + $arr['account_id'] = get_account_id(); + + // prevent execution by delegated channels as well as those not logged in. + // get_account_id() returns the account_id from the session. But $a->account + // may point to the original authenticated account. + + if((! $acc) || ($acc['account_id'] != $arr['account_id'])) { notice( t('Permission denied.') . EOL ); return; } @@ -95,7 +102,10 @@ function new_channel_post(&$a) { function new_channel_content(&$a) { - if(! $a->get_account()) { + + $acc = $a->get_account(); + + if((! $acc) || $acc['account_id'] != get_account_id()) { notice( t('Permission denied.') . EOL); return; } diff --git a/mod/thing.php b/mod/thing.php index 280cc194d..7c5020e62 100644 --- a/mod/thing.php +++ b/mod/thing.php @@ -14,7 +14,6 @@ function thing_init(&$a) { if(! local_channel()) return; - $account_id = $a->get_account(); $channel = $a->get_channel(); $term_hash = (($_REQUEST['term_hash']) ? $_REQUEST['term_hash'] : ''); -- cgit v1.2.3 From 1ccf836ebbc67a2eaf0a7c43a88c17235c94aef6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 24 Jan 2016 18:33:02 -0800 Subject: regression: channel name missing on delegate section of manage page --- mod/manage.php | 1 + 1 file changed, 1 insertion(+) diff --git a/mod/manage.php b/mod/manage.php index b609ede44..0a0cfe921 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -148,6 +148,7 @@ function manage_content(&$a) { for($x = 0; $x < count($delegates); $x ++) { $delegates[$x]['link'] = 'magic?f=&dest=' . urlencode($delegates[$x]['xchan_url']) . '&delegate=' . urlencode($delegates[$x]['xchan_addr']); + $delegates[$x]['channel_name'] = $delegates[$x]['xchan_name']; } } else { -- cgit v1.2.3 From 9081ddb455993cef96e121cebb2f569ae63a50f3 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 24 Jan 2016 18:36:38 -0800 Subject: don't provide notification icons on manage page for delegated channels --- mod/manage.php | 1 + view/tpl/channel.tpl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/manage.php b/mod/manage.php index 0a0cfe921..671003efd 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -149,6 +149,7 @@ function manage_content(&$a) { $delegates[$x]['link'] = 'magic?f=&dest=' . urlencode($delegates[$x]['xchan_url']) . '&delegate=' . urlencode($delegates[$x]['xchan_addr']); $delegates[$x]['channel_name'] = $delegates[$x]['xchan_name']; + $delegates[$x]['delegate'] = 1; } } else { diff --git a/view/tpl/channel.tpl b/view/tpl/channel.tpl index af80e7b4d..23f1e0dd4 100755 --- a/view/tpl/channel.tpl +++ b/view/tpl/channel.tpl @@ -7,6 +7,6 @@ {{/if}} {{/if}} {{$channel.channel_name}} - +
{{if $channel.delegate}}{{else}} {{$channel.mail}}  {{$channel.intros}}{{/if}}
{{$channel.channel_name}}
-- cgit v1.2.3 From 424af13891fb76889c134699d68b8be05f8514d0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 26 Jan 2016 14:14:18 -0800 Subject: fix undefined variable reference in widget_item --- include/widgets.php | 20 ++++++++++++++------ version.inc | 2 +- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/include/widgets.php b/include/widgets.php index 8e8f67ae6..891e9c018 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -807,20 +807,28 @@ function widget_suggestedchats($arr) { } function widget_item($arr) { - // FIXME there is no $a here - $uid = $a->profile['profile_uid']; - if((! $uid) || (! $arr['mid'])) + + $channel_id = 0; + if(array_key_exists('channel_id',$arr) && intval($arr['channel_id'])) + $channel_id = intval($arr['channel_id']); + if(! $channel_id) + $channel_id = get_app()->profile_uid; + if(! $channel_id) return ''; - if(! perm_is_allowed($uid, get_observer_hash(), 'view_pages')) + + if(! $arr['mid']) + return ''; + + if(! perm_is_allowed($channel_id, get_observer_hash(), 'view_pages')) return ''; require_once('include/security.php'); - $sql_extra = item_permissions_sql($uid); + $sql_extra = item_permissions_sql($channel_id); $r = q("select * from item where mid = '%s' and uid = %d and item_type = " . intval(ITEM_TYPE_WEBPAGE) . " $sql_extra limit 1", dbesc($arr['mid']), - intval($uid) + intval($channel_id) ); if(! $r) diff --git a/version.inc b/version.inc index 7b8a8ab83..869617f9e 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-01-24.1288H +2016-01-26.1290H -- cgit v1.2.3 From 3494fddd7c13637c8fb25104002b59448f182e79 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 26 Jan 2016 15:12:34 -0800 Subject: change help text on other channel expiration setting to inform that there is a system limit. Ignore imported feed content that is older than expiration interval. --- include/items.php | 22 ++++++++++++++++++++++ mod/settings.php | 3 ++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 6acf1c883..b00631e2b 100755 --- a/include/items.php +++ b/include/items.php @@ -3687,6 +3687,16 @@ function consume_feed($xml, $importer, &$contact, $pass = 0) { return; } + $sys_expire = intval(get_config('system','default_expire_days')); + $chn_expire = intval($importer['channel_expire_days']); + + $expire_days = $sys_expire; + + if(($chn_expire != 0) && ($chn_expire < $sys_expire)) + $expire_days = $chn_expire; + +logger('expire_days: ' . $expire_days); + $feed = new SimplePie(); $feed->set_raw_data($xml); $feed->init(); @@ -3790,6 +3800,7 @@ function consume_feed($xml, $importer, &$contact, $pass = 0) { intval($importer['channel_id']) ); + // Update content if 'updated' changes if($r) { @@ -3848,6 +3859,17 @@ function consume_feed($xml, $importer, &$contact, $pass = 0) { $datarray['owner_xchan'] = $contact['xchan_hash']; + if(array_key_exists('created',$datarray) && $datarray['created'] != NULL_DATE && $expire_days) { + $t1 = $datarray['created']; + $t2 = datetime_convert('UTC','UTC','now - ' . $expire_days . 'days'); + if($t1 < $t2) { + logger('feed content older than expiration. Ignoring.', LOGGER_DEBUG, LOG_INFO); + continue; + } + } + + + $r = q("SELECT edited FROM item WHERE mid = '%s' AND uid = %d LIMIT 1", dbesc($item_id), intval($importer['channel_id']) diff --git a/mod/settings.php b/mod/settings.php index d2ba590a2..cc75bbd56 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -917,6 +917,7 @@ function settings_content(&$a) { $maxreq = $channel['channel_max_friend_req']; $expire = $channel['channel_expire_days']; $adult_flag = intval($channel['channel_pageflags'] & PAGE_ADULT); + $sys_expire = get_config('system','default_expire_days'); // $unkmail = $a->user['unkmail']; // $cntunkmail = $a->user['cntunkmail']; @@ -1050,7 +1051,7 @@ function settings_content(&$a) { '$lbl_p2macro' => t('Advanced Privacy Settings'), - '$expire' => array('expire',t('Expire other channel content after this many days'),$expire,t('0 or blank prevents expiration')), + '$expire' => array('expire',t('Expire other channel content after this many days'),$expire,sprintf( t('0 or blank to use the website limit. The website expires after %d days.'),intval($sys_expire))), '$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), intval($channel['channel_max_friend_req']) , t('May reduce spam activity')), '$permissions' => t('Default Post Permissions'), '$permdesc' => t("\x28click to open/close\x29"), -- cgit v1.2.3 From 68030d12cfefa8982774cca9714b0c1eed7b9537 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Wed, 27 Jan 2016 00:24:05 +0100 Subject: Linking new connection notification to pending connections (see Channel 1) and improved email notifications about new connections. Could not find a way to do this also for the generic notifications. Added hub domain of channel address on the new channel page. A few people on my hub didn't understood. This example will make it more clear. Some minor bits. --- include/enotify.php | 8 ++++---- mod/new_channel.php | 1 + mod/ping.php | 2 +- view/nl/hstrings.php | 4 ++-- view/theme/redbasic/schema/dark.css | 8 +++++++- view/tpl/email_notify_html.tpl | 2 +- view/tpl/email_notify_text.tpl | 1 + view/tpl/new_channel.tpl | 3 ++- 8 files changed, 19 insertions(+), 10 deletions(-) diff --git a/include/enotify.php b/include/enotify.php index 5bb53aa0e..c4c49c8ff 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -273,14 +273,14 @@ function notification($params) { $preamble = sprintf( t('%1$s, you\'ve received an new connection request from \'%2$s\' at %3$s'), $recip['channel_name'], $sender['xchan_name'], $sitename); $epreamble = sprintf( t('%1$s, you\'ve received [zrl=%2$s]a new connection request[/zrl] from %3$s.'), $recip['channel_name'], - $itemlink, + $siteurl . '/connections/ifpending', '[zrl=' . $sender['xchan_url'] . ']' . $sender['xchan_name'] . '[/zrl]'); $body = sprintf( t('You may visit their profile at %s'),$sender['xchan_url']); $sitelink = t('Please visit %s to approve or reject the connection request.'); - $tsitelink = sprintf( $sitelink, $siteurl ); - $hsitelink = sprintf( $sitelink, '' . $sitename . ''); - $itemlink = $params['link']; + $tsitelink = sprintf( $sitelink, $siteurl . '/connections/ifpending'); + $hsitelink = sprintf( $sitelink, '' . $sitename . ''); + $itemlink = $params['link']; } if ($params['type'] == NOTIFY_SUGGEST) { diff --git a/mod/new_channel.php b/mod/new_channel.php index 07b6cfc85..630984bf2 100644 --- a/mod/new_channel.php +++ b/mod/new_channel.php @@ -133,6 +133,7 @@ function new_channel_content(&$a) { '$label_name' => t('Channel Name'), '$help_name' => t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group" '), '$label_nick' => t('Choose a short nickname'), + '$nick_hub' => '@' . str_replace(array('http://','https://','/'), '', get_config('system','baseurl')), '$nick_desc' => t('Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others.'), '$label_import' => t('Or import an existing channel from another location'), '$name' => $name, diff --git a/mod/ping.php b/mod/ping.php index 394dbf089..69d504da1 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -299,7 +299,7 @@ function ping_init(&$a) { if($r) { foreach($r as $rr) { $result[] = array( - 'notify_link' => $a->get_baseurl() . '/connedit/' . $rr['abook_id'], + 'notify_link' => $a->get_baseurl() . '/connections/ifpending', 'name' => $rr['xchan_name'], 'url' => $rr['xchan_url'], 'photo' => $rr['xchan_photo_s'], diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index dca353ba7..ca021ad76 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -262,7 +262,7 @@ $a->strings["View Profile"] = "Profiel weergeven"; $a->strings["Activity/Posts"] = "Activiteit/berichten connectie"; $a->strings["Edit Connection"] = "Connectie bewerken"; $a->strings["Message"] = "Bericht"; -$a->strings["Ratings"] = "Waarderingen"; +$a->strings["Ratings"] = "Beoordelingen"; $a->strings["%s likes this."] = "%s vindt dit leuk."; $a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; $a->strings["%2\$d people like this."] = array( @@ -1824,7 +1824,7 @@ $a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afs $a->strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; $a->strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; $a->strings["No ratings"] = "Geen beoordelingen"; -$a->strings["Rating: "] = "Waardering: "; +$a->strings["Rating: "] = "Beoordeling: "; $a->strings["Website: "] = "Website: "; $a->strings["Description: "] = "Omschrijving: "; $a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index f65e9aac9..b667dca5c 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -10,7 +10,13 @@ } #profile-photo-wrapper { - border:none; + border: none; +} + +#profile-edit-default-desc { + background-color: #665029; + color: #FFF; + padding: 20px; } .photo { diff --git a/view/tpl/email_notify_html.tpl b/view/tpl/email_notify_html.tpl index 61ede1ca2..5b4954c8e 100755 --- a/view/tpl/email_notify_html.tpl +++ b/view/tpl/email_notify_html.tpl @@ -18,7 +18,7 @@ {{$title}} {{$htmlversion}} {{$hsitelink}} - {{$hitemlink}} + {{$hitemlink}} {{$thanks}} {{$site_admin}} diff --git a/view/tpl/email_notify_text.tpl b/view/tpl/email_notify_text.tpl index bdab4c273..56925c18b 100755 --- a/view/tpl/email_notify_text.tpl +++ b/view/tpl/email_notify_text.tpl @@ -5,6 +5,7 @@ {{$textversion}} {{$tsitelink}} + {{$titemlink}} {{$thanks}} diff --git a/view/tpl/new_channel.tpl b/view/tpl/new_channel.tpl index 46b32b8a9..156b5ec2f 100755 --- a/view/tpl/new_channel.tpl +++ b/view/tpl/new_channel.tpl @@ -22,8 +22,9 @@
{{$help_name}}
- +
+
{{$nick_hub}}
-- cgit v1.2.3 From 535a54040f84bee6c90a24920cf861c2c307dfa4 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 26 Jan 2016 15:38:56 -0800 Subject: add abook_account to cloned abook records, was missing --- include/zot.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/zot.php b/include/zot.php index 9d09aaf58..0210f3f4a 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3186,8 +3186,9 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { logger('process_channel_sync_delivery: total_feeds service class limit exceeded'); continue; } - q("insert into abook ( abook_xchan, abook_channel ) values ('%s', %d ) ", + q("insert into abook ( abook_xchan, abook_account, abook_channel ) values ('%s', %d, %d ) ", dbesc($clean['abook_xchan']), + intval($channel['channel_account_id']), intval($channel['channel_id']) ); $total_friends ++; -- cgit v1.2.3 From 9b08051703ff6695ba989f1cb968200ca59daeb1 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 26 Jan 2016 16:57:36 -0800 Subject: bring back the ability to ignore a pending connection request without deleting it and without always having it in your face and without jumping through hoops. --- include/import.php | 2 +- mod/connections.php | 2 ++ mod/import.php | 2 +- view/tpl/connection_template.tpl | 5 ++++- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/include/import.php b/include/import.php index e208c3b00..b7ec1c565 100644 --- a/include/import.php +++ b/include/import.php @@ -2,7 +2,7 @@ require_once('include/menu.php'); -function import_channel($channel, $account_id) { +function import_channel($channel, $account_id, $seize) { if(! array_key_exists('channel_system',$channel)) { $channel['channel_system'] = (($channel['channel_pageflags'] & 0x1000) ? 1 : 0); diff --git a/mod/connections.php b/mod/connections.php index f43dec73e..1de8279c4 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -269,6 +269,8 @@ function connections_content(&$a) { 'connected' => datetime_convert('UTC',date_default_timezone_get(),$rr['abook_created'], 'c'), 'approve_hover' => t('Approve connection'), 'approve' => (($rr['abook_pending']) ? t('Approve') : false), + 'ignore_hover' => t('Ignore connection'), + 'ignore' => ((! $rr['abook_ignored']) ? t('Ignore') : false), 'recent_label' => t('Recent activity'), 'recentlink' => z_root() . '/network/?f=&cid=' . intval($rr['abook_id']) ); diff --git a/mod/import.php b/mod/import.php index 02e71233a..b6091d944 100644 --- a/mod/import.php +++ b/mod/import.php @@ -123,7 +123,7 @@ function import_account(&$a, $account_id) { if(array_key_exists('channel',$data)) { if($completed < 1) { - $channel = import_channel($data['channel'], $account_id); + $channel = import_channel($data['channel'], $account_id, $seize); } else { diff --git a/view/tpl/connection_template.tpl b/view/tpl/connection_template.tpl index 143989971..b2107306e 100755 --- a/view/tpl/connection_template.tpl +++ b/view/tpl/connection_template.tpl @@ -1,9 +1,12 @@
- {{if $contact.approve}} + {{if $contact.approve && $contact.ignore}}
+ + {{$contact.ignore}} + {{/if}} {{$contact.delete}} -- cgit v1.2.3 From 202817740ab13f91ab9bd90de43116d1778cb751 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 26 Jan 2016 19:04:32 -0800 Subject: control the generation or acceptance of directory keywords --- doc/hidden_configs.bb | 6 +++++- mod/directory.php | 7 +++++-- mod/dirsearch.php | 2 ++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/doc/hidden_configs.bb b/doc/hidden_configs.bb index 5cb482cd9..0f6c0f635 100644 --- a/doc/hidden_configs.bb +++ b/doc/hidden_configs.bb @@ -59,7 +59,11 @@ This document assumes you're an administrator. [b]system.taganyone[/b] Allow the @mention tagging of anyone whether you are connected or not. [b]system.directorytags[/b] - Set the number of keyword tags displayed on the directory page. + Set the number of keyword tags displayed on the directory page. Default is 50 unless set to a + positive integer. + [b]system.disable_directory_keywords[/b] + If '1', do not show directory keywords. If the hub is a directory server, prevent returning + tags to any directory clients. Please do not set this for directory servers in the RED_GLOBAL realm. [b]system.disable_dreport[/b] If '1', don't store or link to delivery reports [b]system.startpage[/b] diff --git a/mod/directory.php b/mod/directory.php index 4ab118b17..dca96694e 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -144,11 +144,14 @@ function directory_content(&$a) { } if($url) { - // We might want to make the tagadelic count (&kw=) configurable or turn it off completely. $numtags = get_config('system','directorytags'); - $kw = ((intval($numtags)) ? $numtags : 50); + $kw = ((intval($numtags) > 0) ? intval($numtags) : 50); + + if(get_config('system','disable_directory_keywords')) + $kw = 0; + $query = $url . '?f=&kw=' . $kw . (($safe_mode != 1) ? '&safe=' . $safe_mode : ''); if($token) diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 388e5f3ac..bc2fa108f 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -75,6 +75,8 @@ function dirsearch_content(&$a) { $kw = ((x($_REQUEST,'kw')) ? intval($_REQUEST['kw']) : 0 ); $forums = ((array_key_exists('pubforums',$_REQUEST)) ? intval($_REQUEST['pubforums']) : 0); + if(get_config('system','disable_directory_keywords')) + $kw = 0; // by default use a safe search -- cgit v1.2.3 From d83b907cdcb4d7a7638b2be9a8024a43f6012827 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 26 Jan 2016 23:44:15 -0800 Subject: rename collections to privacy groups --- boot.php | 3 + doc/Features.md | 4 +- doc/Tags-and-Mentions.md | 4 +- doc/Widgets.md | 2 +- doc/cloud.bb | 2 +- doc/extra_features.bb | 4 +- doc/features.bb | 4 +- doc/roles.md | 10 +- doc/tags_and_mentions.bb | 4 +- include/features.php | 2 +- include/group.php | 10 +- include/items.php | 8 +- mod/group.php | 22 +- mod/network.php | 4 +- mod/settings.php | 2 +- util/hmessages.po | 990 ++++++++++++++++++++++++----------------------- 16 files changed, 540 insertions(+), 535 deletions(-) diff --git a/boot.php b/boot.php index b80b76a8a..76baba361 100755 --- a/boot.php +++ b/boot.php @@ -575,6 +575,9 @@ define ( 'ITEM_TYPE_WEBPAGE', 3 ); define ( 'ITEM_TYPE_BUG', 4 ); define ( 'ITEM_TYPE_DOC', 5 ); +define ( 'ITEM_IS_STICKY', 1000 ); + + define ( 'DBTYPE_MYSQL', 0 ); define ( 'DBTYPE_POSTGRES', 1 ); diff --git a/doc/Features.md b/doc/Features.md index 5a1e8c747..3c5105582 100644 --- a/doc/Features.md +++ b/doc/Features.md @@ -57,9 +57,9 @@ Private messages are encrypted during transport and storage. In this day and age This provides the ability to select posts by date ranges -**Collections Filter** +**Privacy Group Filter** -Enable widget to display stream posts only from selected collections. This also toggles the outbound permissions while you are viewing a collection. This is analogous to Google "circles" or Disapora "aspects". +Enable widget to display stream posts only from selected groups of connection. This also toggles the outbound permissions while you are viewing a privacy group. This is analogous to Google "circles" or Disapora "aspects". **Saved Searches** diff --git a/doc/Tags-and-Mentions.md b/doc/Tags-and-Mentions.md index 84442dd7a..f01b0ee74 100644 --- a/doc/Tags-and-Mentions.md +++ b/doc/Tags-and-Mentions.md @@ -11,9 +11,9 @@ When you start to mention somebody, it will create an auto-complete box to selec **Private Mentions** -If you wish to restrict a post to a single person or a number of people, you can do this by selecting channels or collections from the privacy tool. You can also just tag them with a privacy tag. A privacy tag is a name preceded by the two characters @! - and in addition to tagging these channels, will also change the privacy permissions of the post to include them (and perhaps restrict the post from "everybody" if this was the default). You can have more than one privacy tag, for instance @!bob and @!linda will send the post only to Bob and Linda (in addition to any recipients you selected with the privacy selector - if any). +If you wish to restrict a post to a single person or a number of people, you can do this by selecting channels or privacy groups from the privacy tool. You can also just tag them with a privacy tag. A privacy tag is a name preceded by the two characters @! - and in addition to tagging these channels, will also change the privacy permissions of the post to include them (and perhaps restrict the post from "everybody" if this was the default). You can have more than one privacy tag, for instance @!bob and @!linda will send the post only to Bob and Linda (in addition to any recipients you selected with the privacy selector - if any). -You may also tag public collections. When you create or edit a collection, there is a checkbox to allow the group members to be seen by others. If this box is checked for a collection and you tag (for instance) @!Friends - the post will be restricted to the Friends collection. Check that the collection is public before doing this - as there is no way to take back a post except to delete it. The collection name will appear in the post and will alert members of that collection that they are members of it. +You may also tag privacy groups which are "public". When you create or edit a privacy group, there is a checkbox to allow the group members to be seen by others. If this box is checked for a group and you tag (for instance) @!Friends - the post will be restricted to the Friends group. Check that the group is public before doing this - as there is no way to take back a post except to delete it. The group name will appear in the post and will alert members of that group that they are members of it. diff --git a/doc/Widgets.md b/doc/Widgets.md index 06f043356..10fc75cf8 100644 --- a/doc/Widgets.md +++ b/doc/Widgets.md @@ -15,7 +15,7 @@ Some/many of these widgets have restrictions which may restrict the type of page * args: count - number of items to return (default 24)
 
-* collections - collection selector for the current logged in channel +* collections - privacy group selector for the current logged in channel * args: mode - one of "conversation", "group", "abook" depending on module
 
diff --git a/doc/cloud.bb b/doc/cloud.bb index 20498e6a5..d5195c0f5 100644 --- a/doc/cloud.bb +++ b/doc/cloud.bb @@ -22,6 +22,6 @@ See: [zrl=[baseurl]/help/cloud_desktop_clients]Cloud Desktop Clients[/zrl] [b]Permissions[/b] -When using WebDAV, the file is created with your channel's default file permissions and this cannot be changed from within the operating system. It also may not be as restrictive as you would like. What we've found is that the preferred method of making files private is to first create folders or directories; then visit "filestorage/{{username}}"; select the directory and change the permissions. Do this before you put anything into the directory. The directory permissions take precedence so you can then put files or other folders into that container and they will be protected from unwanted viewers by the directory permissions. It is common for folks to create a "personal" or "private" folder which is restricted to themselves. You can use this as a personal cloud to store anything from anywhere on the web or any computer and it is protected from others. You might also create folders for "family" and "friends" with permission granted to appropriate collections of channels. +When using WebDAV, the file is created with your channel's default file permissions and this cannot be changed from within the operating system. It also may not be as restrictive as you would like. What we've found is that the preferred method of making files private is to first create folders or directories; then visit "filestorage/{{username}}"; select the directory and change the permissions. Do this before you put anything into the directory. The directory permissions take precedence so you can then put files or other folders into that container and they will be protected from unwanted viewers by the directory permissions. It is common for folks to create a "personal" or "private" folder which is restricted to themselves. You can use this as a personal cloud to store anything from anywhere on the web or any computer and it is protected from others. You might also create folders for "family" and "friends" with permission granted to appropriate privacy groups. #include doc/macros/main_footer.bb; diff --git a/doc/extra_features.bb b/doc/extra_features.bb index ed513eeb3..9fb43d9a1 100644 --- a/doc/extra_features.bb +++ b/doc/extra_features.bb @@ -47,9 +47,9 @@ Private messages are encrypted during transport and storage. In this day and age This provides the ability to select posts by date ranges -[b]Collections Filter[/b] +[b]Privacy Group Filter[/b] -Enable widget to display stream posts only from selected collections. This also toggles the outbound permissions while you are viewing a collection. This is analogous to Google "circles" or Disapora "aspects". +Enable widget to display stream posts only from selected privacy groups. This also toggles the outbound permissions while you are viewing a group. This is analogous to Google "circles" or Disapora "aspects". [b]Saved Searches[/b] diff --git a/doc/features.bb b/doc/features.bb index 2d9849d4e..3daf403c3 100644 --- a/doc/features.bb +++ b/doc/features.bb @@ -106,9 +106,9 @@ There is also experimental support for OpenID authentication which may be used i Channels may have permissions to become "derivative channels" where two or more existing channels combine to create a new topical channel. -[b]Collections[/b] +[b]Privacy Groups[/b] -"Collections" is our implementation of privacy groups, which is similar to Google "Circles" and Diaspora "Aspects". This allows you to filter your incoming stream by collections or groups, and automatically set the outbound Access Control List to only those in the Collection when you post. You may over-ride this at any time (prior to sending the post). +Our implementation of privacy groups is similar to Google "Circles" and Diaspora "Aspects". This allows you to filter your incoming stream by selected groups, and automatically set the outbound Access Control List to only those in that privacy group when you post. You may over-ride this at any time (prior to sending the post). [b]Directory Services[/b] diff --git a/doc/roles.md b/doc/roles.md index 5d8d07113..a7608ff90 100644 --- a/doc/roles.md +++ b/doc/roles.md @@ -11,11 +11,11 @@ The channel is a typical social networking profile. By default posts and publish **Restricted** -By default all posts and published items are sent to your 'Friends' collection and not made public. New friends are added to this collection. You can over-ride this and create a public post or published item if you desire. You are listed in the directory. Your online presence (for chat) and your connections (friends) are visible to your profile viewers. +By default all posts and published items are sent to your 'Friends' privacy group and not made public. New friends are added to this privacy group. You can over-ride this and create a public post or published item if you desire. You are listed in the directory. Your online presence (for chat) and your connections (friends) are visible to your profile viewers. **Private** -By default all posts and published items are sent to your 'Friends' collection. New friends are added to this collection. You can over-ride this and create a public post or public item if you desire. You are NOT listed in the directory. Only your connections can see your other connections. Your online presence is hidden. +By default all posts and published items are sent to your 'Friends' privacy group. New friends are added to this privacy group. You can over-ride this and create a public post or public item if you desire. You are NOT listed in the directory. Only your connections can see your other connections. Your online presence is hidden. ##Forum @@ -27,11 +27,11 @@ The channel is a typical forum. By default posts and published items are public. **Restricted** -By default all posts and published items are sent to the channel's 'Friends' collection. New friends are added to this collection. Members may post by @mention+ or wall-to-wall post, but posts and replies may also be seen by other receipients of the top-level post who are not members. The channel is visible in the directory. Members must be manually added by the forum owner. +By default all posts and published items are sent to the channel's 'Friends' privacy group. New friends are added to this privacy group. Members may post by @mention+ or wall-to-wall post, but posts and replies may also be seen by other receipients of the top-level post who are not members. The channel is visible in the directory. Members must be manually added by the forum owner. **Private** -By default all posts and published items are sent to your 'Friends' collection. New friends are added to this collection. The owner can over-ride this and create a public post or public item if desired. Members cannot. You are NOT listed in the directory. Only your connections can see your other connections. Your online presence is hidden. Members must be manually added by the forum owner. Posting by @mention+ is disabled. Posts can only be made via wall-to-wall posts, and sent to members of the 'Friends' collection. They are not publicly visible. +By default all posts and published items are sent to your 'Friends' privacy group. New friends are added to this privacy group. The owner can over-ride this and create a public post or public item if desired. Members cannot. You are NOT listed in the directory. Only your connections can see your other connections. Your online presence is hidden. Members must be manually added by the forum owner. Posting by @mention+ is disabled. Posts can only be made via wall-to-wall posts, and sent to members of the 'Friends' privacy group. They are not publicly visible. ##Feed @@ -44,7 +44,7 @@ Similiar to Social - Mostly Public, but tailored for RSS feed sources. Items may **Restricted** -Not listed in directory. Online presence is meaningless, therefore hidden. Feed is published only to members of the 'Friends' collection. New connections are automatically added to this collections. Members must be manually approved by the channel owner. +Not listed in directory. Online presence is meaningless, therefore hidden. Feed is published only to members of the 'Friends' privacy group. New connections are automatically added to this privacy group. Members must be manually approved by the channel owner. ##Special diff --git a/doc/tags_and_mentions.bb b/doc/tags_and_mentions.bb index d638492bb..29dfe0fbe 100644 --- a/doc/tags_and_mentions.bb +++ b/doc/tags_and_mentions.bb @@ -31,9 +31,9 @@ Some connections in the mention auto-complete box behave differently than others [b]Private Mentions[/b] -If you wish to restrict a post to a single person or a number of people, you can do this by selecting channels or collections from the privacy tool. You can also just tag them with a privacy tag. A privacy tag is a name preceded by the two characters @! - and in addition to tagging these channels, will also change the privacy permissions of the post to only include them. You can have more than one privacy tag, for instance @!bob and @!linda will send the post only to Bob and Linda. This mechanism over-rides the privacy selector. +If you wish to restrict a post to a single person or a number of people, you can do this by selecting channels or privacy groups from the privacy tool. You can also just tag them with a privacy tag. A privacy tag is a name preceded by the two characters @! - and in addition to tagging these channels, will also change the privacy permissions of the post to only include them. You can have more than one privacy tag, for instance @!bob and @!linda will send the post only to Bob and Linda. This mechanism over-rides the privacy selector. -You may also tag public collections. When you create or edit a collection, there is a checkbox to allow the group members to be seen by others. If this box is checked for a collection and you tag (for instance) @!Friends - the post will be restricted to the Friends collection. Check that the collection is public before doing this - as there is no way to take back a post except to delete it. The collection name will appear in the post and will alert members of that collection that they are members of it. +You may also tag privacy groups which are "public". When you create or edit a privacy group, there is a checkbox to allow the group members to be seen by others. If this box is checked for a group and you tag (for instance) @!Friends - the post will be restricted to the Friends group. Check that the group is public before doing this - as there is no way to take back a post except to delete it. The group name will appear in the post and will alert members of that group that they are members of it. [b]Mentions and Comments[/b] diff --git a/include/features.php b/include/features.php index b18a58ed4..78e611afe 100644 --- a/include/features.php +++ b/include/features.php @@ -76,7 +76,7 @@ function get_features($filtered = true) { 'net_module' => array( t('Network and Stream Filtering'), array('archives', t('Search by Date'), t('Ability to select posts by date ranges'),false,get_config('feature_lock','archives')), - array('groups', t('Collections (Privacy Groups)'), t('Enable widget to display Network posts only from selected collections'),false,get_config('feature_lock','groups')), + array('groups', t('Privacy Groups'), t('Enable management and selection of privacy groups'),true,get_config('feature_lock','groups')), array('savedsearch', t('Saved Searches'), t('Save search terms for re-use'),false,get_config('feature_lock','savedsearch')), array('personal_tab', t('Network Personal Tab'), t('Enable tab to display only Network posts that you\'ve interacted on'),false,get_config('feature_lock','personal_tab')), array('new_tab', t('Network New Tab'), t('Enable tab to display all new Network activity'),false,get_config('feature_lock','new_tab')), diff --git a/include/group.php b/include/group.php index 0875b10f9..bef008afd 100644 --- a/include/group.php +++ b/include/group.php @@ -229,7 +229,7 @@ function mini_group_select($uid,$group = '') { logger('mini_group_select: ' . print_r($grps,true), LOGGER_DATA); $o = replace_macros(get_markup_template('group_selection.tpl'), array( - '$label' => t('Add new connections to this collection (privacy group)'), + '$label' => t('Add new connections to this privacy group'), '$groups' => $grps )); return $o; @@ -292,10 +292,10 @@ function group_side($every="connections",$each="group",$edit = false, $group_id $tpl = get_markup_template("group_side.tpl"); $o = replace_macros($tpl, array( - '$title' => t('Collections'), - '$edittext' => t('Edit collection'), - '$createtext' => t('Add new collection'), - '$ungrouped' => (($every === 'contacts') ? t('Channels not in any collection') : ''), + '$title' => t('Privacy Groups'), + '$edittext' => t('Edit group'), + '$createtext' => t('Add privacy group'), + '$ungrouped' => (($every === 'contacts') ? t('Channels not in any privacy group') : ''), '$groups' => $groups, '$add' => t('add'), )); diff --git a/include/items.php b/include/items.php index b00631e2b..b38049e70 100755 --- a/include/items.php +++ b/include/items.php @@ -159,7 +159,7 @@ function filter_insecure($channel_id, $arr) { $ret = array(); - if((! intval(get_pconfig($channel_id, 'system', 'filter_insecure_collections'))) || (! $arr)) + if((! intval(get_pconfig($channel_id, 'system', 'filter_insecure_privacy_groups'))) || (! $arr)) return $arr; $str = ''; @@ -4859,7 +4859,7 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C intval($uid) ); if(! $r) { - $result['message'] = t('Collection not found.'); + $result['message'] = t('Privacy group not found.'); return $result; } @@ -4875,14 +4875,14 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C } } else { $contact_str = ' 0 '; - $result['message'] = t('Collection is empty.'); + $result['message'] = t('Privacy group is empty.'); return $result; } $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND (( author_xchan IN ( $contact_str ) OR owner_xchan in ( $contact_str)) or allow_gid like '" . protect_sprintf('%<' . dbesc($r[0]['hash']) . '>%') . "' ) and id = parent $item_normal ) "; $x = group_rec_byhash($uid,$r[0]['hash']); - $result['headline'] = sprintf( t('Collection: %s'),$x['name']); + $result['headline'] = sprintf( t('Privacy group: %s'),$x['name']); } elseif($arr['cid'] && $uid) { diff --git a/mod/group.php b/mod/group.php index ce9633669..7eaad771f 100644 --- a/mod/group.php +++ b/mod/group.php @@ -17,13 +17,13 @@ function group_post(&$a) { $public = intval($_POST['public']); $r = group_add(local_channel(),$name,$public); if($r) { - info( t('Collection created.') . EOL ); + info( t('Privacy group created.') . EOL ); $r = group_byname(local_channel(),$name); if($r) goaway($a->get_baseurl() . '/group/' . $r); } else - notice( t('Could not create collection.') . EOL ); + notice( t('Could not create privacy group.') . EOL ); goaway($a->get_baseurl() . '/group'); } @@ -35,7 +35,7 @@ function group_post(&$a) { intval(local_channel()) ); if(! $r) { - notice( t('Collection not found.') . EOL ); + notice( t('Privacy group not found.') . EOL ); goaway($a->get_baseurl() . '/connections'); } @@ -51,7 +51,7 @@ function group_post(&$a) { intval($group['id']) ); if($r) - info( t('Collection updated.') . EOL ); + info( t('Privacy group updated.') . EOL ); } goaway(z_root() . '/group/' . argv(1) . '/' . argv(2)); @@ -83,8 +83,8 @@ function group_content(&$a) { if((argc() == 2) && (argv(1) === 'new')) { return replace_macros($tpl, $context + array( - '$title' => t('Create a collection of channels.'), - '$gname' => array('groupname',t('Collection Name: '), '', ''), + '$title' => t('Create a group of channels.'), + '$gname' => array('groupname',t('Privacy group name: '), '', ''), '$gid' => 'new', '$public' => array('public',t('Members are visible to other channels'), false, ''), '$form_security_token' => get_form_security_token("group_edit"), @@ -104,9 +104,9 @@ function group_content(&$a) { if($r) $result = group_rmv(local_channel(),$r[0]['name']); if($result) - info( t('Collection removed.') . EOL); + info( t('Privacy group removed.') . EOL); else - notice( t('Unable to remove collection.') . EOL); + notice( t('Unable to remove privacy group.') . EOL); } goaway($a->get_baseurl() . '/group'); // NOTREACHED @@ -134,7 +134,7 @@ function group_content(&$a) { intval(local_channel()) ); if(! $r) { - notice( t('Collection not found.') . EOL ); + notice( t('Privacy group not found.') . EOL ); goaway($a->get_baseurl() . '/connections'); } $group = $r[0]; @@ -176,8 +176,8 @@ function group_content(&$a) { $context = $context + array( - '$title' => t('Collection Editor'), - '$gname' => array('groupname',t('Collection Name: '),$group['name'], ''), + '$title' => t('Privacy group editor'), + '$gname' => array('groupname',t('Privacy group name: '),$group['name'], ''), '$gid' => $group['id'], '$drop' => $drop_txt, '$public' => array('public',t('Members are visible to other channels'), $group['visible'], ''), diff --git a/mod/network.php b/mod/network.php index ba2ef761b..17f57f498 100644 --- a/mod/network.php +++ b/mod/network.php @@ -204,7 +204,7 @@ function network_content(&$a, $update = 0, $load = false) { } else { $contact_str = ' 0 '; - info( t('Collection is empty')); + info( t('Privacy group is empty')); } $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND (( author_xchan IN ( $contact_str ) OR owner_xchan in ( $contact_str )) or allow_gid like '" . protect_sprintf('%<' . dbesc($group_hash) . '>%') . "' ) and id = parent $item_normal ) "; @@ -213,7 +213,7 @@ function network_content(&$a, $update = 0, $load = false) { if($x) { $title = replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => t('Collection: ') . $x['name'] + '$title' => t('Privacy group: ') . $x['name'] )); } diff --git a/mod/settings.php b/mod/settings.php index cc75bbd56..c1a4b019d 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -354,7 +354,7 @@ function settings_post(&$a) { ); } else { - notice( sprintf('Default privacy collection \'%s\' not found. Please create and re-submit permission change.', t('Friends')) . EOL); + notice( sprintf('Default privacy group \'%s\' not found. Please create and re-submit permission change.', t('Friends')) . EOL); return; } } diff --git a/util/hmessages.po b/util/hmessages.po index d134bfcfa..f4ca7b494 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2016-01-22.1286H\n" +"Project-Id-Version: 2016-01-26.1290H\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-22 00:03-0800\n" +"POT-Creation-Date: 2016-01-26 23:37-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -31,7 +31,7 @@ msgstr "" #: ../../include/Contact.php:101 ../../include/conversation.php:961 #: ../../include/identity.php:949 ../../include/widgets.php:137 -#: ../../include/widgets.php:175 ../../mod/directory.php:318 +#: ../../include/widgets.php:175 ../../mod/directory.php:321 #: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" msgstr "" @@ -68,11 +68,11 @@ msgstr "" #: ../../include/ItemObject.php:100 ../../include/RedDAV/RedBrowser.php:240 #: ../../include/apps.php:259 ../../include/menu.php:108 #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/blocks.php:153 ../../mod/connections.php:284 -#: ../../mod/connections.php:304 ../../mod/editblock.php:135 +#: ../../mod/blocks.php:153 ../../mod/connections.php:286 +#: ../../mod/connections.php:306 ../../mod/editblock.php:135 #: ../../mod/editlayout.php:134 ../../mod/editpost.php:112 #: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183 -#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:257 +#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:256 #: ../../mod/webpages.php:181 msgid "Edit" msgstr "" @@ -84,7 +84,7 @@ msgstr "" #: ../../mod/editblock.php:181 ../../mod/editlayout.php:179 #: ../../mod/editwebpage.php:223 ../../mod/group.php:173 #: ../../mod/photos.php:1126 ../../mod/settings.php:649 -#: ../../mod/thing.php:258 ../../mod/webpages.php:183 +#: ../../mod/thing.php:257 ../../mod/webpages.php:183 msgid "Delete" msgstr "" @@ -307,9 +307,9 @@ msgstr "" #: ../../mod/profiles.php:675 ../../mod/rate.php:168 #: ../../mod/settings.php:586 ../../mod/settings.php:698 #: ../../mod/settings.php:726 ../../mod/settings.php:749 -#: ../../mod/settings.php:834 ../../mod/settings.php:1023 +#: ../../mod/settings.php:834 ../../mod/settings.php:1024 #: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/thing.php:313 ../../mod/thing.php:359 +#: ../../mod/sources.php:138 ../../mod/thing.php:312 ../../mod/thing.php:358 #: ../../mod/xchan.php:11 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "" @@ -400,7 +400,7 @@ msgstr "" #: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360 #: ../../include/apps.php:415 ../../include/conversation.php:1037 -#: ../../include/widgets.php:1368 ../../mod/photos.php:754 +#: ../../include/widgets.php:1376 ../../mod/photos.php:754 #: ../../mod/photos.php:1195 msgid "Unknown" msgstr "" @@ -422,13 +422,13 @@ msgstr "" #: ../../include/RedDAV/RedBrowser.php:230 #: ../../include/RedDAV/RedBrowser.php:303 ../../mod/blocks.php:152 #: ../../mod/layouts.php:175 ../../mod/menu.php:114 -#: ../../mod/new_channel.php:133 ../../mod/register.php:255 +#: ../../mod/new_channel.php:144 ../../mod/register.php:255 #: ../../mod/webpages.php:180 msgid "Create" msgstr "" #: ../../include/RedDAV/RedBrowser.php:231 -#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1381 +#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1389 #: ../../mod/photos.php:781 ../../mod/photos.php:1316 #: ../../mod/profile_photo.php:453 ../../mod/cover_photo.php:353 msgid "Upload" @@ -570,7 +570,7 @@ msgstr "" #: ../../include/acl_selectors.php:251 ../../mod/chat.php:211 #: ../../mod/filestorage.php:147 ../../mod/photos.php:631 -#: ../../mod/photos.php:998 ../../mod/thing.php:310 ../../mod/thing.php:356 +#: ../../mod/photos.php:998 ../../mod/thing.php:309 ../../mod/thing.php:355 msgid "Permissions" msgstr "" @@ -614,12 +614,12 @@ msgstr "" msgid "Address Book" msgstr "" -#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1508 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1517 msgid "Login" msgstr "" #: ../../include/apps.php:132 ../../include/nav.php:200 -#: ../../mod/manage.php:160 +#: ../../mod/manage.php:162 msgid "Channel Manager" msgstr "" @@ -683,7 +683,7 @@ msgstr "" #: ../../include/apps.php:147 ../../include/nav.php:159 #: ../../include/text.php:885 ../../include/text.php:897 -#: ../../mod/connections.php:300 ../../mod/search.php:40 +#: ../../mod/connections.php:302 ../../mod/search.php:40 msgid "Search" msgstr "" @@ -703,7 +703,7 @@ msgstr "" msgid "Invite" msgstr "" -#: ../../include/apps.php:152 ../../include/widgets.php:1254 +#: ../../include/apps.php:152 ../../include/widgets.php:1262 msgid "Features" msgstr "" @@ -740,12 +740,12 @@ msgstr "" #: ../../include/attach.php:436 ../../include/attach.php:888 #: ../../include/attach.php:959 ../../include/attach.php:1111 #: ../../include/chat.php:133 ../../include/photos.php:29 -#: ../../include/items.php:4407 ../../index.php:186 ../../index.php:371 +#: ../../include/items.php:4429 ../../index.php:186 ../../index.php:371 #: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22 #: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 #: ../../mod/bookmarks.php:48 ../../mod/channel.php:100 -#: ../../mod/channel.php:214 ../../mod/channel.php:254 ../../mod/chat.php:94 +#: ../../mod/channel.php:215 ../../mod/channel.php:255 ../../mod/chat.php:94 #: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/connections.php:29 #: ../../mod/connedit.php:355 ../../mod/editblock.php:65 #: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 @@ -761,7 +761,7 @@ msgstr "" #: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6 #: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111 #: ../../mod/mood.php:112 ../../mod/network.php:12 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/new_channel.php:75 ../../mod/new_channel.php:109 #: ../../mod/notifications.php:66 ../../mod/page.php:31 ../../mod/page.php:86 #: ../../mod/pdledit.php:22 ../../mod/photos.php:70 ../../mod/poke.php:133 #: ../../mod/profile.php:64 ../../mod/profile.php:72 @@ -770,8 +770,8 @@ msgstr "" #: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17 #: ../../mod/service_limits.php:7 ../../mod/settings.php:568 #: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 -#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:271 -#: ../../mod/thing.php:291 ../../mod/thing.php:328 +#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270 +#: ../../mod/thing.php:290 ../../mod/thing.php:327 #: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 #: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69 #: ../../mod/cover_photo.php:273 ../../mod/cover_photo.php:286 @@ -877,7 +877,7 @@ msgstr "" #: ../../include/bb2diaspora.php:487 ../../include/event.php:52 #: ../../include/identity.php:1000 ../../include/text.php:1425 -#: ../../mod/directory.php:304 +#: ../../mod/directory.php:307 msgid "Location:" msgstr "" @@ -1000,12 +1000,12 @@ msgstr "" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:303 -#: ../../mod/directory.php:381 ../../mod/directory.php:386 +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:305 +#: ../../mod/directory.php:384 ../../mod/directory.php:389 msgid "Find" msgstr "" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:385 +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:388 #: ../../mod/suggest.php:60 msgid "Channel Suggestions" msgstr "" @@ -1570,7 +1570,7 @@ msgstr "" msgid "Required" msgstr "" -#: ../../include/datetime.php:263 ../../boot.php:2330 +#: ../../include/datetime.php:263 ../../boot.php:2347 msgid "never" msgstr "" @@ -1672,7 +1672,7 @@ msgstr "" #: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 #: ../../mod/photos.php:626 ../../mod/removeme.php:60 #: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1512 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1521 msgid "No" msgstr "" @@ -1684,7 +1684,7 @@ msgstr "" #: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229 #: ../../mod/photos.php:626 ../../mod/removeme.php:60 #: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1512 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1521 msgid "Yes" msgstr "" @@ -1696,201 +1696,6 @@ msgstr "" msgid "This Website Only" msgstr "" -#: ../../include/enotify.php:57 ../../include/network.php:1612 -msgid "$Projectname Notification" -msgstr "" - -#: ../../include/enotify.php:58 ../../include/network.php:1613 -msgid "$projectname" -msgstr "" - -#: ../../include/enotify.php:60 ../../include/network.php:1615 -msgid "Thank You," -msgstr "" - -#: ../../include/enotify.php:62 ../../include/network.php:1617 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/enotify.php:96 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "" - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:160 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:168 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:192 ../../include/enotify.php:207 -#: ../../include/enotify.php:233 ../../include/enotify.php:251 -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:198 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../include/enotify.php:202 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../include/enotify.php:226 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../include/enotify.php:228 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:240 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:241 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../include/enotify.php:242 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:258 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:259 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../include/enotify.php:260 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../include/enotify.php:272 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" - -#: ../../include/enotify.php:278 ../../include/enotify.php:297 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:280 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../include/enotify.php:287 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:288 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:289 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." -msgstr "" - -#: ../../include/enotify.php:295 -msgid "Name:" -msgstr "" - -#: ../../include/enotify.php:296 -msgid "Photo:" -msgstr "" - -#: ../../include/enotify.php:299 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/enotify.php:514 -msgid "[Hubzilla:Notify]" -msgstr "" - #: ../../include/event.php:768 msgid "This event has been added to your calendar." msgstr "" @@ -1955,7 +1760,7 @@ msgid "" msgstr "" #: ../../include/group.php:232 -msgid "Add new connections to this collection (privacy group)" +msgid "Add new connections to this privacy group" msgstr "" #: ../../include/group.php:251 ../../mod/admin.php:900 @@ -1966,20 +1771,20 @@ msgstr "" msgid "edit" msgstr "" -#: ../../include/group.php:295 -msgid "Collections" +#: ../../include/group.php:295 ../../include/features.php:79 +msgid "Privacy Groups" msgstr "" #: ../../include/group.php:296 -msgid "Edit collection" +msgid "Edit group" msgstr "" #: ../../include/group.php:297 -msgid "Add new collection" +msgid "Add privacy group" msgstr "" #: ../../include/group.php:298 -msgid "Channels not in any collection" +msgid "Channels not in any privacy group" msgstr "" #: ../../include/group.php:300 ../../include/widgets.php:275 @@ -2341,7 +2146,7 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1507 +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1516 msgid "Logout" msgstr "" @@ -2418,7 +2223,7 @@ msgstr "" msgid "Home Page" msgstr "" -#: ../../include/nav.php:149 ../../mod/register.php:264 ../../boot.php:1490 +#: ../../include/nav.php:149 ../../mod/register.php:264 ../../boot.php:1499 msgid "Register" msgstr "" @@ -2464,7 +2269,7 @@ msgid "Mark all channel notifications seen" msgstr "" #: ../../include/nav.php:181 ../../include/text.php:815 -#: ../../mod/connections.php:296 +#: ../../mod/connections.php:298 msgid "Connections" msgstr "" @@ -2528,7 +2333,7 @@ msgstr "" msgid "Account/Channel Settings" msgstr "" -#: ../../include/nav.php:210 ../../include/widgets.php:1281 +#: ../../include/nav.php:210 ../../include/widgets.php:1289 msgid "Admin" msgstr "" @@ -2548,6 +2353,23 @@ msgstr "" msgid "view full size" msgstr "" +#: ../../include/network.php:1612 ../../include/enotify.php:57 +msgid "$Projectname Notification" +msgstr "" + +#: ../../include/network.php:1613 ../../include/enotify.php:58 +msgid "$projectname" +msgstr "" + +#: ../../include/network.php:1615 ../../include/enotify.php:60 +msgid "Thank You," +msgstr "" + +#: ../../include/network.php:1617 ../../include/enotify.php:62 +#, php-format +msgid "%s Administrator" +msgstr "" + #: ../../include/network.php:1674 msgid "No Subject" msgstr "" @@ -3063,7 +2885,7 @@ msgstr "" msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/zot.php:3584 +#: ../../include/zot.php:3585 msgid "invalid target signature" msgstr "" @@ -3105,7 +2927,7 @@ msgstr "" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:891 #: ../../mod/admin.php:900 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1510 +#: ../../boot.php:1519 msgid "Email" msgstr "" @@ -3308,11 +3130,7 @@ msgid "Ability to select posts by date ranges" msgstr "" #: ../../include/features.php:79 -msgid "Collections (Privacy Groups)" -msgstr "" - -#: ../../include/features.php:79 -msgid "Enable widget to display Network posts only from selected collections" +msgid "Enable management and selection of privacy groups" msgstr "" #: ../../include/features.php:80 ../../include/widgets.php:274 @@ -3539,7 +3357,7 @@ msgstr "" msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1244 ../../mod/settings.php:1029 +#: ../../include/identity.php:1244 ../../mod/settings.php:1030 msgid "Full Name:" msgstr "" @@ -3559,7 +3377,7 @@ msgstr "" msgid "Birthday:" msgstr "" -#: ../../include/identity.php:1287 ../../mod/directory.php:299 +#: ../../include/identity.php:1287 ../../mod/directory.php:302 msgid "Age:" msgstr "" @@ -3572,7 +3390,7 @@ msgstr "" msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1303 ../../mod/directory.php:315 +#: ../../include/identity.php:1303 ../../mod/directory.php:318 #: ../../mod/profiles.php:701 msgid "Hometown:" msgstr "" @@ -3589,7 +3407,7 @@ msgstr "" msgid "Religion:" msgstr "" -#: ../../include/identity.php:1311 ../../mod/directory.php:317 +#: ../../include/identity.php:1311 ../../mod/directory.php:320 msgid "About:" msgstr "" @@ -4075,181 +3893,359 @@ msgstr "" msgid "Suggested Chatrooms" msgstr "" -#: ../../include/widgets.php:931 ../../include/widgets.php:1021 +#: ../../include/widgets.php:939 ../../include/widgets.php:1029 msgid "photo/image" msgstr "" -#: ../../include/widgets.php:1115 +#: ../../include/widgets.php:1123 msgid "Rating Tools" msgstr "" -#: ../../include/widgets.php:1119 ../../include/widgets.php:1121 +#: ../../include/widgets.php:1127 ../../include/widgets.php:1129 msgid "Rate Me" msgstr "" -#: ../../include/widgets.php:1124 +#: ../../include/widgets.php:1132 msgid "View Ratings" msgstr "" -#: ../../include/widgets.php:1135 +#: ../../include/widgets.php:1143 msgid "Public Hubs" msgstr "" -#: ../../include/widgets.php:1183 +#: ../../include/widgets.php:1191 msgid "Forums" msgstr "" -#: ../../include/widgets.php:1212 +#: ../../include/widgets.php:1220 msgid "Tasks" msgstr "" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1229 msgid "Documentation" msgstr "" -#: ../../include/widgets.php:1223 +#: ../../include/widgets.php:1231 msgid "Project/Site Information" msgstr "" -#: ../../include/widgets.php:1224 +#: ../../include/widgets.php:1232 msgid "For Members" msgstr "" -#: ../../include/widgets.php:1225 +#: ../../include/widgets.php:1233 msgid "For Administrators" msgstr "" -#: ../../include/widgets.php:1226 +#: ../../include/widgets.php:1234 msgid "For Developers" msgstr "" -#: ../../include/widgets.php:1251 ../../mod/admin.php:452 +#: ../../include/widgets.php:1259 ../../mod/admin.php:452 msgid "Site" msgstr "" -#: ../../include/widgets.php:1252 +#: ../../include/widgets.php:1260 msgid "Accounts" msgstr "" -#: ../../include/widgets.php:1253 ../../mod/admin.php:1051 -msgid "Channels" +#: ../../include/widgets.php:1261 ../../mod/admin.php:1051 +msgid "Channels" +msgstr "" + +#: ../../include/widgets.php:1263 ../../mod/admin.php:1166 +#: ../../mod/admin.php:1227 +msgid "Plugins" +msgstr "" + +#: ../../include/widgets.php:1264 ../../mod/admin.php:1388 +#: ../../mod/admin.php:1422 +msgid "Themes" +msgstr "" + +#: ../../include/widgets.php:1265 +msgid "Inspect queue" +msgstr "" + +#: ../../include/widgets.php:1266 +msgid "Profile Config" +msgstr "" + +#: ../../include/widgets.php:1267 +msgid "DB updates" +msgstr "" + +#: ../../include/widgets.php:1285 ../../include/widgets.php:1291 +#: ../../mod/admin.php:1507 +msgid "Logs" +msgstr "" + +#: ../../include/widgets.php:1290 +msgid "Plugin Features" +msgstr "" + +#: ../../include/widgets.php:1292 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1370 ../../mod/photos.php:748 +#: ../../mod/photos.php:1283 +msgid "View Photo" +msgstr "" + +#: ../../include/widgets.php:1387 ../../mod/photos.php:779 +msgid "Edit Album" +msgstr "" + +#: ../../include/items.php:423 ../../index.php:370 ../../mod/dreport.php:6 +#: ../../mod/dreport.php:45 ../../mod/group.php:68 +#: ../../mod/import_items.php:108 ../../mod/like.php:280 +#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:1130 ../../include/items.php:1176 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1375 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1381 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1383 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1385 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1387 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:4350 ../../mod/admin.php:135 +#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/thing.php:85 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4862 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Privacy group not found." +msgstr "" + +#: ../../include/items.php:4878 +msgid "Privacy group is empty." +msgstr "" + +#: ../../include/items.php:4885 +#, php-format +msgid "Privacy group: %s" +msgstr "" + +#: ../../include/items.php:4895 ../../mod/connedit.php:692 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4897 +msgid "Connection not found." +msgstr "" + +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "" + +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "" + +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../include/enotify.php:160 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:168 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:188 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/widgets.php:1255 ../../mod/admin.php:1166 -#: ../../mod/admin.php:1227 -msgid "Plugins" +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../include/widgets.php:1256 ../../mod/admin.php:1388 -#: ../../mod/admin.php:1422 -msgid "Themes" +#: ../../include/enotify.php:192 ../../include/enotify.php:207 +#: ../../include/enotify.php:233 ../../include/enotify.php:251 +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/widgets.php:1257 -msgid "Inspect queue" +#: ../../include/enotify.php:198 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/widgets.php:1258 -msgid "Profile Config" +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../include/widgets.php:1259 -msgid "DB updates" +#: ../../include/enotify.php:202 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../include/widgets.php:1277 ../../include/widgets.php:1283 -#: ../../mod/admin.php:1507 -msgid "Logs" +#: ../../include/enotify.php:226 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" msgstr "" -#: ../../include/widgets.php:1282 -msgid "Plugin Features" +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../include/widgets.php:1284 -msgid "User registrations waiting for confirmation" +#: ../../include/enotify.php:228 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../include/widgets.php:1362 ../../mod/photos.php:748 -#: ../../mod/photos.php:1283 -msgid "View Photo" +#: ../../include/enotify.php:240 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" msgstr "" -#: ../../include/widgets.php:1379 ../../mod/photos.php:779 -msgid "Edit Album" +#: ../../include/enotify.php:241 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../include/items.php:423 ../../index.php:370 ../../mod/dreport.php:6 -#: ../../mod/dreport.php:45 ../../mod/group.php:68 -#: ../../mod/import_items.php:108 ../../mod/like.php:280 -#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 -msgid "Permission denied" +#: ../../include/enotify.php:242 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../include/items.php:1130 ../../include/items.php:1176 -msgid "(Unknown)" +#: ../../include/enotify.php:258 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" msgstr "" -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." +#: ../../include/enotify.php:259 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../include/items.php:1375 -msgid "Visible to you only." +#: ../../include/enotify.php:260 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." +#: ../../include/enotify.php:272 +msgid "[Hubzilla:Notify] Introduction received" msgstr "" -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../include/items.php:1381 +#: ../../include/enotify.php:274 #, php-format -msgid "Visible to anybody on %s." +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "" -#: ../../include/items.php:1383 -msgid "Visible to all connections." +#: ../../include/enotify.php:278 ../../include/enotify.php:297 +#, php-format +msgid "You may visit their profile at %s" msgstr "" -#: ../../include/items.php:1385 -msgid "Visible to approved connections." +#: ../../include/enotify.php:280 +#, php-format +msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../include/items.php:1387 -msgid "Visible to specific connections." +#: ../../include/enotify.php:287 +msgid "[Hubzilla:Notify] Friend suggestion received" msgstr "" -#: ../../include/items.php:4328 ../../mod/admin.php:135 -#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:86 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." +#: ../../include/enotify.php:288 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../include/items.php:4840 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." +#: ../../include/enotify.php:289 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." msgstr "" -#: ../../include/items.php:4856 -msgid "Collection is empty." +#: ../../include/enotify.php:295 +msgid "Name:" msgstr "" -#: ../../include/items.php:4863 -#, php-format -msgid "Collection: %s" +#: ../../include/enotify.php:296 +msgid "Photo:" msgstr "" -#: ../../include/items.php:4873 ../../mod/connedit.php:692 +#: ../../include/enotify.php:299 #, php-format -msgid "Connection: %s" +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/items.php:4875 -msgid "Connection not found." +#: ../../include/enotify.php:514 +msgid "[Hubzilla:Notify]" msgstr "" #: ../../index.php:242 ../../mod/help.php:213 @@ -5378,14 +5374,23 @@ msgid "Approve connection" msgstr "" #: ../../mod/connections.php:272 +msgid "Ignore connection" +msgstr "" + +#: ../../mod/connections.php:273 ../../mod/connedit.php:536 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "" + +#: ../../mod/connections.php:274 msgid "Recent activity" msgstr "" -#: ../../mod/connections.php:301 +#: ../../mod/connections.php:303 msgid "Search your connections" msgstr "" -#: ../../mod/connections.php:302 +#: ../../mod/connections.php:304 msgid "Connections search" msgstr "" @@ -5460,10 +5465,6 @@ msgstr "" msgid "Unignore" msgstr "" -#: ../../mod/connedit.php:536 ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "" - #: ../../mod/connedit.php:539 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" @@ -5641,86 +5642,86 @@ msgstr "" msgid "Public access denied." msgstr "" -#: ../../mod/directory.php:236 +#: ../../mod/directory.php:239 #, php-format msgid "%d rating" msgid_plural "%d ratings" msgstr[0] "" msgstr[1] "" -#: ../../mod/directory.php:247 +#: ../../mod/directory.php:250 msgid "Gender: " msgstr "" -#: ../../mod/directory.php:249 +#: ../../mod/directory.php:252 msgid "Status: " msgstr "" -#: ../../mod/directory.php:251 +#: ../../mod/directory.php:254 msgid "Homepage: " msgstr "" -#: ../../mod/directory.php:310 +#: ../../mod/directory.php:313 msgid "Description:" msgstr "" -#: ../../mod/directory.php:319 +#: ../../mod/directory.php:322 msgid "Public Forum:" msgstr "" -#: ../../mod/directory.php:322 +#: ../../mod/directory.php:325 msgid "Keywords: " msgstr "" -#: ../../mod/directory.php:325 +#: ../../mod/directory.php:328 msgid "Don't suggest" msgstr "" -#: ../../mod/directory.php:327 +#: ../../mod/directory.php:330 msgid "Common connections:" msgstr "" -#: ../../mod/directory.php:376 +#: ../../mod/directory.php:379 msgid "Global Directory" msgstr "" -#: ../../mod/directory.php:376 +#: ../../mod/directory.php:379 msgid "Local Directory" msgstr "" -#: ../../mod/directory.php:382 +#: ../../mod/directory.php:385 msgid "Finding:" msgstr "" -#: ../../mod/directory.php:387 +#: ../../mod/directory.php:390 msgid "next page" msgstr "" -#: ../../mod/directory.php:387 +#: ../../mod/directory.php:390 msgid "previous page" msgstr "" -#: ../../mod/directory.php:388 +#: ../../mod/directory.php:391 msgid "Sort options" msgstr "" -#: ../../mod/directory.php:389 +#: ../../mod/directory.php:392 msgid "Alphabetic" msgstr "" -#: ../../mod/directory.php:390 +#: ../../mod/directory.php:393 msgid "Reverse Alphabetic" msgstr "" -#: ../../mod/directory.php:391 +#: ../../mod/directory.php:394 msgid "Newest to Oldest" msgstr "" -#: ../../mod/directory.php:392 +#: ../../mod/directory.php:395 msgid "Oldest to Newest" msgstr "" -#: ../../mod/directory.php:409 +#: ../../mod/directory.php:412 msgid "No entries (some entries may be hidden)." msgstr "" @@ -6072,23 +6073,23 @@ msgid "Suggest a friend for %s" msgstr "" #: ../../mod/group.php:20 -msgid "Collection created." +msgid "Privacy group created." msgstr "" #: ../../mod/group.php:26 -msgid "Could not create collection." +msgid "Could not create privacy group." msgstr "" #: ../../mod/group.php:54 -msgid "Collection updated." +msgid "Privacy group updated." msgstr "" #: ../../mod/group.php:86 -msgid "Create a collection of channels." +msgid "Create a group of channels." msgstr "" #: ../../mod/group.php:87 ../../mod/group.php:180 -msgid "Collection Name: " +msgid "Privacy group name: " msgstr "" #: ../../mod/group.php:89 ../../mod/group.php:183 @@ -6096,15 +6097,15 @@ msgid "Members are visible to other channels" msgstr "" #: ../../mod/group.php:107 -msgid "Collection removed." +msgid "Privacy group removed." msgstr "" #: ../../mod/group.php:109 -msgid "Unable to remove collection." +msgid "Unable to remove privacy group." msgstr "" #: ../../mod/group.php:179 -msgid "Collection Editor" +msgid "Privacy group editor" msgstr "" #: ../../mod/group.php:193 @@ -6561,6 +6562,18 @@ msgstr "" msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" +#: ../../mod/ping.php:260 +msgid "sent you a private message" +msgstr "" + +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "" + +#: ../../mod/ping.php:350 +msgid "posted an event" +msgstr "" + #: ../../mod/magic.php:69 msgid "Hub not found." msgstr "" @@ -6657,33 +6670,33 @@ msgstr "" msgid "Create a new channel" msgstr "" -#: ../../mod/manage.php:161 +#: ../../mod/manage.php:163 msgid "Current Channel" msgstr "" -#: ../../mod/manage.php:163 +#: ../../mod/manage.php:165 msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../mod/manage.php:164 +#: ../../mod/manage.php:166 msgid "Default Channel" msgstr "" -#: ../../mod/manage.php:165 +#: ../../mod/manage.php:167 msgid "Make Default" msgstr "" -#: ../../mod/manage.php:168 +#: ../../mod/manage.php:170 #, php-format msgid "%d new messages" msgstr "" -#: ../../mod/manage.php:169 +#: ../../mod/manage.php:171 #, php-format msgid "%d new introductions" msgstr "" -#: ../../mod/manage.php:171 +#: ../../mod/manage.php:173 msgid "Delegated Channels" msgstr "" @@ -6815,7 +6828,7 @@ msgstr "" msgid "Menu Item Permissions" msgstr "" -#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1056 +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1057 msgid "(click to open/close)" msgstr "" @@ -6936,22 +6949,22 @@ msgid "Search Results For:" msgstr "" #: ../../mod/network.php:207 -msgid "Collection is empty" +msgid "Privacy group is empty" msgstr "" #: ../../mod/network.php:216 -msgid "Collection: " +msgid "Privacy group: " msgstr "" #: ../../mod/network.php:242 msgid "Invalid connection." msgstr "" -#: ../../mod/new_channel.php:120 +#: ../../mod/new_channel.php:130 msgid "Add a Channel" msgstr "" -#: ../../mod/new_channel.php:121 +#: ../../mod/new_channel.php:131 msgid "" "A channel is your own collection of related web pages. A channel can be used " "to hold social network profiles, blogs, conversation groups and forums, " @@ -6959,43 +6972,43 @@ msgid "" "service provider allows." msgstr "" -#: ../../mod/new_channel.php:123 ../../mod/register.php:246 +#: ../../mod/new_channel.php:133 ../../mod/register.php:246 #: ../../mod/sources.php:103 ../../mod/sources.php:137 msgid "Channel Name" msgstr "" -#: ../../mod/new_channel.php:124 +#: ../../mod/new_channel.php:134 msgid "" "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " "Group\" " msgstr "" -#: ../../mod/new_channel.php:125 ../../mod/register.php:248 +#: ../../mod/new_channel.php:135 ../../mod/register.php:248 msgid "Choose a short nickname" msgstr "" -#: ../../mod/new_channel.php:126 ../../mod/register.php:249 +#: ../../mod/new_channel.php:137 ../../mod/register.php:249 msgid "" "Your nickname will be used to create an easily remembered channel address " "(like an email address) which you can share with others." msgstr "" -#: ../../mod/new_channel.php:127 +#: ../../mod/new_channel.php:138 msgid "" "Or import an existing channel from another location" msgstr "" -#: ../../mod/new_channel.php:129 ../../mod/register.php:251 +#: ../../mod/new_channel.php:140 ../../mod/register.php:251 msgid "" "Please choose a channel type (such as social networking or community forum) " "and privacy requirements so we can select the best permissions for you" msgstr "" -#: ../../mod/new_channel.php:130 ../../mod/register.php:252 +#: ../../mod/new_channel.php:141 ../../mod/register.php:252 msgid "Channel Type" msgstr "" -#: ../../mod/new_channel.php:130 ../../mod/register.php:252 +#: ../../mod/new_channel.php:141 ../../mod/register.php:252 msgid "Read more about roles" msgstr "" @@ -7224,18 +7237,6 @@ msgstr "" msgid "Recent Photos" msgstr "" -#: ../../mod/ping.php:260 -msgid "sent you a private message" -msgstr "" - -#: ../../mod/ping.php:308 -msgid "added your channel" -msgstr "" - -#: ../../mod/ping.php:350 -msgid "posted an event" -msgstr "" - #: ../../mod/poke.php:164 msgid "Poke/Prod" msgstr "" @@ -7327,7 +7328,7 @@ msgstr "" msgid "Upload Profile Photo" msgstr "" -#: ../../mod/profile_photo.php:457 ../../mod/settings.php:975 +#: ../../mod/profile_photo.php:457 ../../mod/settings.php:976 #: ../../mod/cover_photo.php:357 msgid "or" msgstr "" @@ -7865,7 +7866,7 @@ msgid "" "removed from the network" msgstr "" -#: ../../mod/removeme.php:61 ../../mod/settings.php:1112 +#: ../../mod/removeme.php:61 ../../mod/settings.php:1113 msgid "Remove Channel" msgstr "" @@ -8031,7 +8032,7 @@ msgstr "" msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:699 ../../mod/settings.php:1030 +#: ../../mod/settings.php:699 ../../mod/settings.php:1031 msgid "Email Address:" msgstr "" @@ -8168,305 +8169,306 @@ msgstr "" msgid "Anybody on the internet" msgstr "" -#: ../../mod/settings.php:966 +#: ../../mod/settings.php:967 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:972 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:981 msgid "Your channel address is" msgstr "" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1022 msgid "Channel Settings" msgstr "" -#: ../../mod/settings.php:1028 +#: ../../mod/settings.php:1029 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:1031 +#: ../../mod/settings.php:1032 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:1032 +#: ../../mod/settings.php:1033 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:1032 +#: ../../mod/settings.php:1033 msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1034 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:1035 +#: ../../mod/settings.php:1036 msgid "Adult Content" msgstr "" -#: ../../mod/settings.php:1035 +#: ../../mod/settings.php:1036 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/settings.php:1037 +#: ../../mod/settings.php:1038 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:1039 +#: ../../mod/settings.php:1040 msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../mod/settings.php:1041 +#: ../../mod/settings.php:1042 msgid "Hide my online presence" msgstr "" -#: ../../mod/settings.php:1041 +#: ../../mod/settings.php:1042 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/settings.php:1043 +#: ../../mod/settings.php:1044 msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/settings.php:1044 +#: ../../mod/settings.php:1045 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/settings.php:1045 +#: ../../mod/settings.php:1046 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../mod/settings.php:1046 +#: ../../mod/settings.php:1047 msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1048 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1050 msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1050 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/settings.php:1053 +#: ../../mod/settings.php:1054 msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/settings.php:1053 -msgid "0 or blank prevents expiration" +#: ../../mod/settings.php:1054 +#, php-format +msgid "0 or blank to use the website limit. The website expires after %d days." msgstr "" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1055 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1055 msgid "May reduce spam activity" msgstr "" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1056 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:1060 +#: ../../mod/settings.php:1061 msgid "Channel permissions category:" msgstr "" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1067 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1067 msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1070 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1071 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:1071 +#: ../../mod/settings.php:1072 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 msgid "You receive a connection request" msgstr "" -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1077 msgid "Your connections are confirmed" msgstr "" -#: ../../mod/settings.php:1077 +#: ../../mod/settings.php:1078 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1079 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:1079 +#: ../../mod/settings.php:1080 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:1080 +#: ../../mod/settings.php:1081 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1082 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1086 msgid "Show visual notifications including:" msgstr "" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 msgid "Unseen grid activity" msgstr "" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1089 msgid "Unseen channel activity" msgstr "" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1090 msgid "Unseen private messages" msgstr "" -#: ../../mod/settings.php:1089 ../../mod/settings.php:1094 -#: ../../mod/settings.php:1095 ../../mod/settings.php:1096 +#: ../../mod/settings.php:1090 ../../mod/settings.php:1095 +#: ../../mod/settings.php:1096 ../../mod/settings.php:1097 msgid "Recommended" msgstr "" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1091 msgid "Upcoming events" msgstr "" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 msgid "Events today" msgstr "" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1093 msgid "Upcoming birthdays" msgstr "" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1093 msgid "Not available in all themes" msgstr "" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1094 msgid "System (personal) notifications" msgstr "" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1095 msgid "System info messages" msgstr "" -#: ../../mod/settings.php:1095 +#: ../../mod/settings.php:1096 msgid "System critical alerts" msgstr "" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1097 msgid "New connections" msgstr "" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1098 msgid "System Registrations" msgstr "" -#: ../../mod/settings.php:1098 +#: ../../mod/settings.php:1099 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1101 msgid "Notify me of events this many days in advance" msgstr "" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1101 msgid "Must be greater than 0" msgstr "" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1103 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1104 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1107 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1108 msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1109 msgid "Default photo upload folder" msgstr "" -#: ../../mod/settings.php:1108 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1109 ../../mod/settings.php:1110 msgid "%Y - current year, %m - current month" msgstr "" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 msgid "Default file upload folder" msgstr "" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1112 msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/settings.php:1113 +#: ../../mod/settings.php:1114 msgid "Remove this channel." msgstr "" -#: ../../mod/settings.php:1114 +#: ../../mod/settings.php:1115 msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1116 msgid "Start calendar week on monday" msgstr "" @@ -8900,7 +8902,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:86 ../../boot.php:1516 +#: ../../mod/lostpass.php:86 ../../boot.php:1525 msgid "Password Reset" msgstr "" @@ -9114,60 +9116,60 @@ msgstr "" msgid "Select a tag to remove: " msgstr "" -#: ../../mod/thing.php:111 +#: ../../mod/thing.php:110 msgid "Thing updated" msgstr "" -#: ../../mod/thing.php:163 +#: ../../mod/thing.php:162 msgid "Object store: failed" msgstr "" -#: ../../mod/thing.php:167 +#: ../../mod/thing.php:166 msgid "Thing added" msgstr "" -#: ../../mod/thing.php:193 +#: ../../mod/thing.php:192 #, php-format msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../mod/thing.php:256 +#: ../../mod/thing.php:255 msgid "Show Thing" msgstr "" -#: ../../mod/thing.php:263 +#: ../../mod/thing.php:262 msgid "item not found." msgstr "" -#: ../../mod/thing.php:296 +#: ../../mod/thing.php:295 msgid "Edit Thing" msgstr "" -#: ../../mod/thing.php:298 ../../mod/thing.php:348 +#: ../../mod/thing.php:297 ../../mod/thing.php:347 msgid "Select a profile" msgstr "" -#: ../../mod/thing.php:302 ../../mod/thing.php:351 +#: ../../mod/thing.php:301 ../../mod/thing.php:350 msgid "Post an activity" msgstr "" -#: ../../mod/thing.php:302 ../../mod/thing.php:351 +#: ../../mod/thing.php:301 ../../mod/thing.php:350 msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../mod/thing.php:304 ../../mod/thing.php:353 +#: ../../mod/thing.php:303 ../../mod/thing.php:352 msgid "Name of thing e.g. something" msgstr "" -#: ../../mod/thing.php:306 ../../mod/thing.php:354 +#: ../../mod/thing.php:305 ../../mod/thing.php:353 msgid "URL of thing (optional)" msgstr "" -#: ../../mod/thing.php:308 ../../mod/thing.php:355 +#: ../../mod/thing.php:307 ../../mod/thing.php:354 msgid "URL for photo of thing (optional)" msgstr "" -#: ../../mod/thing.php:346 +#: ../../mod/thing.php:345 msgid "Add Thing to your Profile" msgstr "" @@ -9402,51 +9404,51 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1319 +#: ../../boot.php:1328 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1322 +#: ../../boot.php:1331 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1489 +#: ../../boot.php:1498 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1511 +#: ../../boot.php:1520 msgid "Password" msgstr "" -#: ../../boot.php:1512 +#: ../../boot.php:1521 msgid "Remember me" msgstr "" -#: ../../boot.php:1515 +#: ../../boot.php:1524 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2137 +#: ../../boot.php:2154 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2289 +#: ../../boot.php:2306 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2292 +#: ../../boot.php:2309 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2329 +#: ../../boot.php:2346 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2333 +#: ../../boot.php:2350 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" -- cgit v1.2.3 From 5d6657f77a2937f7027e222a86a68274ce177214 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 27 Jan 2016 00:11:15 -0800 Subject: provide an icon to make 'add privacy group' stand out from the list of groups. Please revert if you think it's too messy. --- version.inc | 2 +- view/tpl/group_side.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/version.inc b/version.inc index 869617f9e..a9ccde1f5 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-01-26.1290H +2016-01-27.1291H diff --git a/view/tpl/group_side.tpl b/view/tpl/group_side.tpl index 952757076..af6014359 100755 --- a/view/tpl/group_side.tpl +++ b/view/tpl/group_side.tpl @@ -16,7 +16,7 @@ {{/foreach}}
  • - {{$createtext}} + {{$createtext}}
  • -- cgit v1.2.3 From 722d7ff38d5bbf49a7c990d9219998c2c8a5b58f Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 27 Jan 2016 09:46:18 +0100 Subject: lower caution level from danger to warning for ignore button --- view/tpl/connection_template.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/tpl/connection_template.tpl b/view/tpl/connection_template.tpl index b2107306e..e2a14d9a2 100755 --- a/view/tpl/connection_template.tpl +++ b/view/tpl/connection_template.tpl @@ -5,7 +5,7 @@ - {{$contact.ignore}} + {{$contact.ignore}} {{/if}} {{$contact.delete}} -- cgit v1.2.3 From 08fbe176276b8f92aec4490d5b0f03a5a4e4fa7c Mon Sep 17 00:00:00 2001 From: Jeroen van Riet Paap Date: Wed, 27 Jan 2016 23:40:33 +0100 Subject: no trailing slash it will break your system --- install/htconfig.sample.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/htconfig.sample.php b/install/htconfig.sample.php index 794afa93b..df39bc9ad 100755 --- a/install/htconfig.sample.php +++ b/install/htconfig.sample.php @@ -37,7 +37,7 @@ $db_type = 0; // use 1 for postgres, 0 for mysql $default_timezone = 'America/Los_Angeles'; -// What is your site name? +// What is your site name? DO NOT ADD A TRAILING SLASH! $a->config['system']['baseurl'] = 'https://myredsite.example'; $a->config['system']['sitename'] = "Hubzilla"; -- cgit v1.2.3 From 9a4cbc05a6a05b5335552f17e960ea06a3eaf604 Mon Sep 17 00:00:00 2001 From: Jeroen van Riet Paap Date: Wed, 27 Jan 2016 23:48:14 +0100 Subject: no trailing slash --- view/en/htconfig.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl index 17ee7bfeb..17f19702f 100644 --- a/view/en/htconfig.tpl +++ b/view/en/htconfig.tpl @@ -28,7 +28,7 @@ $db_type = '{{$dbtype}}'; // an integer. 0 or unset for mysql, 1 for postgres $default_timezone = '{{$timezone}}'; -// What is your site name? +// What is your site name? DO NOT ADD A TRAILING SLASH! $a->config['system']['baseurl'] = '{{$siteurl}}'; $a->config['system']['sitename'] = "Hubzilla"; -- cgit v1.2.3 From 9ea904c12d43de10aa452ad687830d5d68f5274c Mon Sep 17 00:00:00 2001 From: Jeroen van Riet Paap Date: Thu, 28 Jan 2016 00:21:43 +0100 Subject: remark in the private notes encrypted Notes are not encrypted and are readable in the database by the admin. Made a remark about that. Probably this needs to be fixed, but till than, it's better to warn people. --- include/features.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/features.php b/include/features.php index 78e611afe..4d8d162fa 100644 --- a/include/features.php +++ b/include/features.php @@ -50,7 +50,7 @@ function get_features($filtered = true) { array('profile_export', t('Profile Import/Export'), t('Save and load profile details across sites/channels'),false,get_config('feature_lock','profile_export')), array('webpages', t('Web Pages'), t('Provide managed web pages on your channel'),false,get_config('feature_lock','webpages')), array('hide_rating', t('Hide Rating'), t('Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else.'),false,get_config('feature_lock','hide_rating')), - array('private_notes', t('Private Notes'), t('Enables a tool to store notes and reminders'),false,get_config('feature_lock','private_notes')), + array('private_notes', t('Private Notes'), t('Enables a tool to store notes and reminders (note: not encrypted)'),false,get_config('feature_lock','private_notes')), array('nav_channel_select', t('Navigation Channel Select'), t('Change channels directly from within the navigation dropdown menu'),false,get_config('feature_lock','nav_channel_select')), array('photo_location', t('Photo Location'), t('If location data is available on uploaded photos, link this to a map.'),false,get_config('feature_lock','photo_location')), -- cgit v1.2.3 From ae3ca2b7df7cd9a9cfc069d43f7b6d6cd7aae387 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 27 Jan 2016 23:02:36 -0800 Subject: block_public_blackout setting --- include/identity.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/identity.php b/include/identity.php index 32c4dd130..fd0b4d7f5 100644 --- a/include/identity.php +++ b/include/identity.php @@ -924,6 +924,9 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) { $pdesc = true; $reddress = true; + if($block && intval(get_config('system','block_public_blackout'))) + return $o; + if((! is_array($profile)) && (! count($profile))) return $o; @@ -935,6 +938,7 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) { $show_connect = false; + $profile['picdate'] = urlencode($profile['picdate']); call_hooks('profile_sidebar_enter', $profile); -- cgit v1.2.3