From 9d51318c53e1adc2e4d4c8586f8783819516991e Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 19 Oct 2017 17:24:11 -0700 Subject: table structure for pseudo or proxy channels (pchan) --- Zotlabs/Module/Wfinger.php | 139 ++++++++++++++++++++++++++++---------------- boot.php | 2 +- include/channel.php | 9 +++ install/schema_mysql.sql | 13 +++++ install/schema_postgres.sql | 13 +++++ install/update.php | 40 ++++++++++++- 6 files changed, 165 insertions(+), 51 deletions(-) diff --git a/Zotlabs/Module/Wfinger.php b/Zotlabs/Module/Wfinger.php index d0c4d73d2..9db95f181 100644 --- a/Zotlabs/Module/Wfinger.php +++ b/Zotlabs/Module/Wfinger.php @@ -32,6 +32,7 @@ class Wfinger extends \Zotlabs\Web\Controller { $root_resource = false; + $pchan = false; if(strcasecmp(rtrim($resource,'/'),z_root()) === 0) $root_resource = true; @@ -57,11 +58,24 @@ class Wfinger extends \Zotlabs\Web\Controller { $channel = str_replace('~','',basename($resource)); } - $r = q("select * from channel left join xchan on channel_hash = xchan_hash - where channel_address = '%s' limit 1", - dbesc($channel) - ); - + if(substr($channel,0,1) === '[' ) { + $channel = substr($channel,1); + $channel = substr($channel,0,-1); + $pchan = true; + $r = q("select * from pchan left join xchan on pchan_hash = xchan_hash + where pchan_guid = '%s' limit 1", + dbesc($channel) + ); + if($r) { + $r[0] = pchan_to_chan($r[0]); + } + } + else { + $r = q("select * from channel left join xchan on channel_hash = xchan_hash + where channel_address = '%s' limit 1", + dbesc($channel) + ); + } } header('Access-Control-Allow-Origin: *'); @@ -94,7 +108,7 @@ class Wfinger extends \Zotlabs\Web\Controller { $result['subject'] = $resource; $aliases = array( - z_root() . '/channel/' . $r[0]['channel_address'], + z_root() . (($pchan) ? '/pchan/' : '/channel/') . $r[0]['channel_address'], z_root() . '/~' . $r[0]['channel_address'] ); @@ -116,53 +130,80 @@ class Wfinger extends \Zotlabs\Web\Controller { if($alias != $resource) $result['aliases'][] = $alias; - $result['links'] = [ - - [ - 'rel' => 'http://webfinger.net/rel/avatar', - 'type' => $r[0]['xchan_photo_mimetype'], - 'href' => $r[0]['xchan_photo_l'] - ], - - [ - 'rel' => 'http://webfinger.net/rel/profile-page', - 'href' => z_root() . '/profile/' . $r[0]['channel_address'], - ], - - [ - 'rel' => 'http://schemas.google.com/g/2010#updates-from', - 'type' => 'application/atom+xml', - 'href' => z_root() . '/ofeed/' . $r[0]['channel_address'] - ], - [ - 'rel' => 'http://webfinger.net/rel/blog', - 'href' => z_root() . '/channel/' . $r[0]['channel_address'], - ], + if($pchan) { + $result['links'] = [ - [ - 'rel' => 'http://ostatus.org/schema/1.0/subscribe', - 'template' => z_root() . '/follow?f=&url={uri}', - ], + [ + 'rel' => 'http://webfinger.net/rel/avatar', + 'type' => $r[0]['xchan_photo_mimetype'], + 'href' => $r[0]['xchan_photo_l'] + ], - [ - 'rel' => 'http://purl.org/zot/protocol', - 'href' => z_root() . '/.well-known/zot-info' . '?address=' . $r[0]['xchan_addr'], - ], + [ + 'rel' => 'http://webfinger.net/rel/profile-page', + 'href' => $r[0]['xchan_url'], + ], - [ - 'rel' => 'http://purl.org/openwebauth/v1', - 'type' => 'application/x-zot+json', - 'href' => z_root() . '/owa', - ], + [ + 'rel' => 'magic-public-key', + 'href' => 'data:application/magic-public-key,' . salmon_key($r[0]['channel_pubkey']), + ] + + ]; + + + } + else { + + $result['links'] = [ + + [ + 'rel' => 'http://webfinger.net/rel/avatar', + 'type' => $r[0]['xchan_photo_mimetype'], + 'href' => $r[0]['xchan_photo_l'] + ], + + [ + 'rel' => 'http://webfinger.net/rel/profile-page', + 'href' => z_root() . '/profile/' . $r[0]['channel_address'], + ], + + [ + 'rel' => 'http://schemas.google.com/g/2010#updates-from', + 'type' => 'application/atom+xml', + 'href' => z_root() . '/ofeed/' . $r[0]['channel_address'] + ], + + [ + 'rel' => 'http://webfinger.net/rel/blog', + 'href' => z_root() . '/channel/' . $r[0]['channel_address'], + ], + + [ + 'rel' => 'http://ostatus.org/schema/1.0/subscribe', + 'template' => z_root() . '/follow?f=&url={uri}', + ], + + [ + 'rel' => 'http://purl.org/zot/protocol', + 'href' => z_root() . '/.well-known/zot-info' . '?address=' . $r[0]['xchan_addr'], + ], + + [ + 'rel' => 'http://purl.org/openwebauth/v1', + 'type' => 'application/x-zot+json', + 'href' => z_root() . '/owa', + ], + + + [ + 'rel' => 'magic-public-key', + 'href' => 'data:application/magic-public-key,' . salmon_key($r[0]['channel_pubkey']), + ] + ]; + } - - [ - 'rel' => 'magic-public-key', - 'href' => 'data:application/magic-public-key,' . salmon_key($r[0]['channel_pubkey']), - ] - ]; - if($zot) { // get a zotinfo packet and return it with webfinger $result['zot'] = zotinfo( [ 'address' => $r[0]['xchan_addr'] ]); @@ -174,7 +215,7 @@ class Wfinger extends \Zotlabs\Web\Controller { killme(); } - $arr = [ 'channel' => $r[0], 'request' => $_REQUEST, 'result' => $result ]; + $arr = [ 'channel' => $r[0], 'pchan' => $pchan, 'request' => $_REQUEST, 'result' => $result ]; call_hooks('webfinger',$arr); diff --git a/boot.php b/boot.php index 08a7ee032..9238b38f0 100755 --- a/boot.php +++ b/boot.php @@ -52,7 +52,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'STD_VERSION', '2.9' ); define ( 'ZOT_REVISION', '1.3' ); -define ( 'DB_UPDATE_VERSION', 1196 ); +define ( 'DB_UPDATE_VERSION', 1197 ); define ( 'PROJECT_BASE', __DIR__ ); diff --git a/include/channel.php b/include/channel.php index d7116ce28..399dff87e 100644 --- a/include/channel.php +++ b/include/channel.php @@ -2604,3 +2604,12 @@ function anon_identity_init($reqvars) { } +function pchan_to_chan($pchan) { + $chan = $pchan; + $chan['channel_address'] = $pchan['pchan_guid']; + $chan['channel_hash'] = $pchan['pchan_hash']; + $chan['channel_pubkey'] = $pchan['pchan_pubkey']; + $chan['channel_prvkey'] = $pchan['pchan_prvkey']; + $chan['channel_name'] = $pchan['xchan_name']; + return $chan; +} \ No newline at end of file diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 3143854f5..afa3c095d 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -900,6 +900,19 @@ CREATE TABLE IF NOT EXISTS `outq` ( KEY `outq_priority` (`outq_priority`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +CREATE TABLE IF NOT EXISTS pchan ( + `pchan_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `pchan_guid` char(191) NOT NULL DEFAULT '', + `pchan_hash` char(191) NOT NULL DEFAULT '', + `pchan_pubkey` text NOT NULL, + `pchan_prvkey` text NOT NULL, + PRIMARY KEY (`pchan_id`), + KEY `pchan_guid` (`pchan_guid`), + KEY `pchan_hash` (`pchan_hash`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + + CREATE TABLE IF NOT EXISTS `pconfig` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT 0 , diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 65acb644b..082817a60 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -872,6 +872,19 @@ create index "outq_async" on outq ("outq_async"); create index "outq_delivered" on outq ("outq_delivered"); create index "outq_priority" on outq ("outq_priority"); + +CREATE TABLE "pchan" ( + "pchan_id" serial NOT NULL, + "pchan_guid" text NOT NULL, + "pchan_hash" text NOT NULL, + "pchan_pubkey" text NOT NULL, + "pchan_prvkey" text NOT NULL, + PRIMARY KEY ("pchan_id") +); + +create index "pchan_guid" on pchan ("pchan_guid"); +create index "pchan_hash" on pchan ("pchan_hash"); + CREATE TABLE "pconfig" ( "id" serial NOT NULL, "uid" bigint NOT NULL DEFAULT '0', diff --git a/install/update.php b/install/update.php index 07675a973..80d987a19 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Thu, 19 Oct 2017 21:09:12 -0400 Subject: Display different info message if using invite code --- Zotlabs/Module/Register.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php index 9a364e154..b026dc4c6 100644 --- a/Zotlabs/Module/Register.php +++ b/Zotlabs/Module/Register.php @@ -128,7 +128,11 @@ class Register extends \Zotlabs\Web\Controller { $res = send_register_success_email($result['email'],$result['password']); } if($res) { - info( t('Registration successful. Please check your email for validation instructions.') . EOL ) ; + if($invite_code) { + info( t('Registration successful. Continue to create your first channel...') . EOL ) ; + } else { + info( t('Registration successful. Please check your email for validation instructions.') . EOL ) ; + } } } elseif($policy == REGISTER_APPROVE) { -- cgit v1.2.3 From 7d92e9026e55d0e67cab237c5ced39480074a7f6 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 19 Oct 2017 18:48:01 -0700 Subject: typo --- install/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/update.php b/install/update.php index 80d987a19..7d59555d3 100644 --- a/install/update.php +++ b/install/update.php @@ -3036,7 +3036,7 @@ function update_r1196() { )"); $r2 = q("create index \"pchan_guid\" on pchan (\"pchan_guid\")"); - $r3 = q("create index \"pchan_hash\" on pchan (\"pchan_hash\"); + $r3 = q("create index \"pchan_hash\" on pchan (\"pchan_hash\")"); if($r1 && $r2 && $r3) { return UPDATE_SUCCESS; -- cgit v1.2.3 From 400441d56b21e69663ea7213ccf63fe0ee6a6bab Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 19 Oct 2017 18:48:11 -0700 Subject: register workflow was getting over-ridden in include/security --- Zotlabs/Module/New_channel.php | 2 +- Zotlabs/Module/Register.php | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php index cfd45e909..2b73fa191 100644 --- a/Zotlabs/Module/New_channel.php +++ b/Zotlabs/Module/New_channel.php @@ -9,7 +9,7 @@ require_once('include/permissions.php'); class New_channel extends \Zotlabs\Web\Controller { function init() { - + $cmd = ((argc() > 1) ? argv(1) : ''); if($cmd === 'autofill.json') { diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php index 9a364e154..9cf0960c0 100644 --- a/Zotlabs/Module/Register.php +++ b/Zotlabs/Module/Register.php @@ -123,13 +123,13 @@ class Register extends \Zotlabs\Web\Controller { if($policy == REGISTER_OPEN ) { if($email_verify) { $res = verify_email_address($result); + if($res) { + info( t('Registration successful. Please check your email for validation instructions.') . EOL ) ; + } } else { $res = send_register_success_email($result['email'],$result['password']); } - if($res) { - info( t('Registration successful. Please check your email for validation instructions.') . EOL ) ; - } } elseif($policy == REGISTER_APPROVE) { $res = send_reg_approval_email($result); @@ -167,7 +167,8 @@ class Register extends \Zotlabs\Web\Controller { $next_page = $x; $_SESSION['workflow'] = true; } - + + unset($_SESSION['login_return_url']); goaway(z_root() . '/' . $next_page); } -- cgit v1.2.3 From 40f805c94a58e7088417350d4dc782668815e7fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Sat, 21 Oct 2017 13:01:46 +0200 Subject: Fixed the Spanish translation --- view/es-es/hmessages.po | 3114 ++++++++++++++++++++++++++--------------------- view/es-es/hstrings.php | 190 ++- 2 files changed, 1836 insertions(+), 1468 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index c3a44756c..99cc86107 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 12:13+0200\n" -"PO-Revision-Date: 2017-10-01 10:52+0000\n" +"POT-Creation-Date: 2017-10-19 12:01+0200\n" +"PO-Revision-Date: 2017-10-20 10:42+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" @@ -152,14 +152,14 @@ msgid "Special - Group Repository" msgstr "Especial - Repositorio de grupo" #: ../../Zotlabs/Access/PermissionRoles.php:270 -#: ../../Zotlabs/Module/Cdav.php:1123 ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Settings/Channel.php:467 -#: ../../Zotlabs/Module/Connedit.php:932 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:798 #: ../../Zotlabs/Module/Register.php:213 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 #: ../../include/selectors.php:140 ../../include/event.php:1297 -#: ../../include/event.php:1304 ../../include/connections.php:681 -#: ../../include/connections.php:688 +#: ../../include/event.php:1304 ../../include/connections.php:689 +#: ../../include/connections.php:696 msgid "Other" msgstr "Otro" @@ -172,16 +172,16 @@ msgstr "Modo personalizado/experto" #: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1062 +#: ../../Zotlabs/Module/Cards.php:29 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1163 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 #: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 #: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:115 -#: ../../Zotlabs/Module/Channel.php:245 ../../Zotlabs/Module/Channel.php:285 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 +#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 #: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 #: ../../Zotlabs/Module/Appman.php:82 ../../Zotlabs/Module/Regmod.php:21 @@ -189,21 +189,21 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 #: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:275 +#: ../../Zotlabs/Module/Thing.php:295 ../../Zotlabs/Module/Thing.php:336 #: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:102 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 #: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 #: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:235 ../../Zotlabs/Module/Wiki.php:341 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:388 #: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:280 -#: ../../Zotlabs/Module/Profile_photo.php:293 +#: ../../Zotlabs/Module/Profile_photo.php:288 +#: ../../Zotlabs/Module/Profile_photo.php:301 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:223 #: ../../Zotlabs/Module/Item.php:240 ../../Zotlabs/Module/Item.php:250 -#: ../../Zotlabs/Module/Item.php:1076 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:125 ../../Zotlabs/Module/Connedit.php:385 +#: ../../Zotlabs/Module/Item.php:1102 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:125 ../../Zotlabs/Module/Connedit.php:389 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 #: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 #: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 @@ -213,22 +213,25 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Webpages.php:118 ../../Zotlabs/Module/Block.php:24 -#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Suggest.php:28 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mail.php:146 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cards.php:68 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Display.php:343 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:85 -#: ../../Zotlabs/Module/Filestorage.php:112 ../../Zotlabs/Module/Common.php:39 +#: ../../Zotlabs/Module/Filestorage.php:112 ../../Zotlabs/Module/Common.php:38 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../Zotlabs/Web/WebServer.php:131 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../Zotlabs/Web/WebServer.php:169 #: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 #: ../../addon/gitwiki/Mod_Gitwiki.php:196 #: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 @@ -236,9 +239,9 @@ msgstr "El perfil solicitado no está disponible." #: ../../include/attach.php:255 ../../include/attach.php:269 #: ../../include/attach.php:276 ../../include/attach.php:344 #: ../../include/attach.php:358 ../../include/attach.php:365 -#: ../../include/attach.php:443 ../../include/attach.php:918 -#: ../../include/attach.php:992 ../../include/attach.php:1157 -#: ../../include/items.php:3440 ../../include/photos.php:28 +#: ../../include/attach.php:443 ../../include/attach.php:924 +#: ../../include/attach.php:998 ../../include/attach.php:1163 +#: ../../include/items.php:3489 ../../include/photos.php:28 msgid "Permission denied." msgstr "Acceso denegado." @@ -247,7 +250,7 @@ msgstr "Acceso denegado." msgid "Block Name" msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2280 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2288 msgid "Blocks" msgstr "Bloques" @@ -265,62 +268,64 @@ msgstr "Creado" msgid "Edited" msgstr "Editado" -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Cdav.php:1126 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Cdav.php:1185 #: ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Connedit.php:935 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Menu.php:118 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Webpages.php:239 ../../Zotlabs/Storage/Browser.php:229 -#: ../../Zotlabs/Storage/Browser.php:335 ../../Zotlabs/Widget/Cdav.php:127 -#: ../../Zotlabs/Widget/Cdav.php:164 +#: ../../Zotlabs/Module/Cards.php:96 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:335 +#: ../../Zotlabs/Widget/Cdav.php:127 ../../Zotlabs/Widget/Cdav.php:164 msgid "Create" msgstr "Crear" #: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Settings/Oauth.php:149 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:114 #: ../../Zotlabs/Module/Connections.php:260 #: ../../Zotlabs/Module/Connections.php:297 -#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:167 -#: ../../Zotlabs/Module/Wiki.php:300 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:346 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Layouts.php:193 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Lib/Apps.php:393 ../../Zotlabs/Lib/ThreadItem.php:107 -#: ../../Zotlabs/Storage/Browser.php:239 ../../Zotlabs/Widget/Cdav.php:125 -#: ../../Zotlabs/Widget/Cdav.php:161 ../../addon/gitwiki/Mod_Gitwiki.php:151 -#: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1161 -#: ../../include/channel.php:1165 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:399 +#: ../../Zotlabs/Lib/ThreadItem.php:111 ../../Zotlabs/Storage/Browser.php:239 +#: ../../Zotlabs/Widget/Cdav.php:125 ../../Zotlabs/Widget/Cdav.php:161 +#: ../../addon/gitwiki/Mod_Gitwiki.php:151 +#: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1262 +#: ../../include/channel.php:1266 ../../include/menu.php:113 msgid "Edit" msgstr "Editar" -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1049 #: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Webpages.php:241 -#: ../../Zotlabs/Widget/Cdav.php:123 ../../include/conversation.php:1308 +#: ../../Zotlabs/Widget/Cdav.php:123 ../../include/conversation.php:1346 msgid "Share" msgstr "Compartir" #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:838 ../../Zotlabs/Module/Cdav.php:1128 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 #: ../../Zotlabs/Module/Admin/Accounts.php:173 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Thing.php:262 ../../Zotlabs/Module/Editblock.php:139 #: ../../Zotlabs/Module/Connections.php:268 -#: ../../Zotlabs/Module/Photos.php:1145 ../../Zotlabs/Module/Connedit.php:650 -#: ../../Zotlabs/Module/Connedit.php:937 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Photos.php:1150 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Group.php:179 #: ../../Zotlabs/Module/Profiles.php:803 #: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Lib/Apps.php:394 -#: ../../Zotlabs/Lib/ThreadItem.php:127 ../../Zotlabs/Storage/Browser.php:240 -#: ../../include/conversation.php:649 ../../include/conversation.php:686 +#: ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:400 +#: ../../Zotlabs/Lib/ThreadItem.php:131 ../../Zotlabs/Storage/Browser.php:240 +#: ../../include/conversation.php:674 ../../include/conversation.php:717 msgid "Delete" msgstr "Eliminar" #: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Wiki.php:169 ../../Zotlabs/Module/Layouts.php:198 -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:59 +#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 #: ../../addon/gitwiki/Mod_Gitwiki.php:153 msgid "View" msgstr "Ver" @@ -354,10 +359,6 @@ msgid_plural "%d messages sent." msgstr[0] "%d mensajes enviados." msgstr[1] "%d mensajes enviados." -#: ../../Zotlabs/Module/Invite.php:98 ../../Zotlabs/Lib/Apps.php:254 -msgid "Invite" -msgstr "Invitar" - #: ../../Zotlabs/Module/Invite.php:107 msgid "You have no more invitations available" msgstr "No tiene más invitaciones disponibles" @@ -411,7 +412,7 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../Zotlabs/Module/Admin/Site.php:273 #: ../../Zotlabs/Module/Admin/Profs.php:157 #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Security.php:104 @@ -421,24 +422,26 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Settings/Tokens.php:168 #: ../../Zotlabs/Module/Settings/Account.php:118 #: ../../Zotlabs/Module/Settings/Featured.php:52 -#: ../../Zotlabs/Module/Settings/Display.php:203 +#: ../../Zotlabs/Module/Settings/Display.php:207 #: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Import.php:518 ../../Zotlabs/Module/Cal.php:343 +#: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 +#: ../../Zotlabs/Module/Import.php:529 ../../Zotlabs/Module/Cal.php:343 #: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:659 -#: ../../Zotlabs/Module/Photos.php:1024 ../../Zotlabs/Module/Photos.php:1064 -#: ../../Zotlabs/Module/Photos.php:1182 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Poke.php:200 -#: ../../Zotlabs/Module/Connedit.php:900 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Photos.php:1029 ../../Zotlabs/Module/Photos.php:1069 +#: ../../Zotlabs/Module/Photos.php:1187 ../../Zotlabs/Module/Wiki.php:206 +#: ../../Zotlabs/Module/Pdledit.php:94 ../../Zotlabs/Module/Poke.php:200 +#: ../../Zotlabs/Module/Connedit.php:904 ../../Zotlabs/Module/Chat.php:196 #: ../../Zotlabs/Module/Chat.php:242 ../../Zotlabs/Module/Pconfig.php:107 #: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 #: ../../Zotlabs/Module/Filestorage.php:155 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Lib/ThreadItem.php:730 +#: ../../Zotlabs/Lib/ThreadItem.php:743 #: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../view/theme/redbasic/php/config.php:95 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:226 +#: ../../Zotlabs/Widget/Wiki_pages.php:61 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:269 #: ../../addon/planets/planets.php:153 #: ../../addon/openclipatar/openclipatar.php:53 #: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 @@ -447,7 +450,7 @@ msgstr "3. Pulse [conectar]" #: ../../addon/likebanner/likebanner.php:57 #: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 #: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:759 +#: ../../addon/diaspora/diaspora.php:807 #: ../../addon/gitwiki/Mod_Gitwiki.php:155 #: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/visage/visage.php:170 #: ../../addon/nsabait/nsabait.php:161 ../../addon/mailtest/mailtest.php:100 @@ -455,8 +458,8 @@ msgstr "3. Pulse [conectar]" #: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 #: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 #: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:96 ../../addon/chords/Mod_Chords.php:60 -#: ../../addon/libertree/libertree.php:85 +#: ../../addon/frphotos/frphotos.php:96 ../../addon/pubcrawl/pubcrawl.php:1049 +#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 #: ../../addon/flattrwidget/flattrwidget.php:124 #: ../../addon/statusnet/statusnet.php:322 #: ../../addon/statusnet/statusnet.php:380 @@ -474,7 +477,8 @@ msgstr "Enviar" #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 +#: ../../Zotlabs/Module/Card_edit.php:33 msgid "Item not found" msgstr "Elemento no encontrado" @@ -495,10 +499,10 @@ msgstr "Modificar la plantilla" #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 #: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Group.php:74 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Web/WebServer.php:130 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Web/WebServer.php:168 #: ../../addon/redphotos/redphotos.php:119 #: ../../addon/frphotos/frphotos.php:81 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:340 +#: ../../include/items.php:346 msgid "Permission denied" msgstr "Permiso denegado" @@ -510,7 +514,7 @@ msgstr "Identificador del perfil no válido" msgid "Profile Visibility Editor" msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1485 +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1585 msgid "Profile" msgstr "Perfil" @@ -527,160 +531,153 @@ msgstr "Visible para" msgid "All Connections" msgstr "Todas las conexiones" -#: ../../Zotlabs/Module/Cdav.php:726 +#: ../../Zotlabs/Module/Cdav.php:785 msgid "INVALID EVENT DISMISSED!" msgstr "¡EVENTO NO VÁLIDO RECHAZADO!" -#: ../../Zotlabs/Module/Cdav.php:727 +#: ../../Zotlabs/Module/Cdav.php:786 msgid "Summary: " msgstr "Resumen: " -#: ../../Zotlabs/Module/Cdav.php:727 ../../Zotlabs/Module/Cdav.php:728 -#: ../../Zotlabs/Module/Cdav.php:735 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:759 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/Apps.php:721 ../../Zotlabs/Lib/Apps.php:799 +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:764 ../../Zotlabs/Module/Photos.php:1220 +#: ../../Zotlabs/Lib/Apps.php:727 ../../Zotlabs/Lib/Apps.php:805 #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:86 -#: ../../Zotlabs/Widget/Album.php:84 ../../include/conversation.php:1107 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:841 +#: ../../include/conversation.php:1143 msgid "Unknown" msgstr "Desconocido" -#: ../../Zotlabs/Module/Cdav.php:728 +#: ../../Zotlabs/Module/Cdav.php:787 msgid "Date: " msgstr "Fecha: " -#: ../../Zotlabs/Module/Cdav.php:729 ../../Zotlabs/Module/Cdav.php:736 +#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 msgid "Reason: " msgstr "Razón: " -#: ../../Zotlabs/Module/Cdav.php:734 +#: ../../Zotlabs/Module/Cdav.php:793 msgid "INVALID CARD DISMISSED!" msgstr "¡TARJETA NO VÁLIDA RECHAZADA!" -#: ../../Zotlabs/Module/Cdav.php:735 +#: ../../Zotlabs/Module/Cdav.php:794 msgid "Name: " msgstr "Nombre: " -#: ../../Zotlabs/Module/Cdav.php:768 -msgid "CalDAV" -msgstr "CalDAV" - -#: ../../Zotlabs/Module/Cdav.php:809 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 msgid "Event title" msgstr "Título del evento" -#: ../../Zotlabs/Module/Cdav.php:810 ../../Zotlabs/Module/Events.php:466 +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 msgid "Start date and time" msgstr "Fecha y hora de comienzo" -#: ../../Zotlabs/Module/Cdav.php:810 ../../Zotlabs/Module/Cdav.php:811 +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 msgid "Example: YYYY-MM-DD HH:mm" msgstr "Ejemplo: YYYY-MM-DD HH:mm" -#: ../../Zotlabs/Module/Cdav.php:811 +#: ../../Zotlabs/Module/Cdav.php:870 msgid "End date and time" msgstr "Fecha y hora de finalización" -#: ../../Zotlabs/Module/Cdav.php:812 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 #: ../../Zotlabs/Module/Appman.php:138 ../../Zotlabs/Module/Rbmark.php:101 #: ../../addon/rendezvous/rendezvous.php:173 msgid "Description" msgstr "Descripción" -#: ../../Zotlabs/Module/Cdav.php:813 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 #: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:737 ../../Zotlabs/Module/Pubsites.php:51 +#: ../../Zotlabs/Module/Profiles.php:737 ../../Zotlabs/Module/Pubsites.php:52 #: ../../include/js_strings.php:25 msgid "Location" msgstr "Ubicación" -#: ../../Zotlabs/Module/Cdav.php:820 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 #: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:337 -#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Photos.php:913 +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Photos.php:918 msgid "Previous" msgstr "Anterior" -#: ../../Zotlabs/Module/Cdav.php:821 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 #: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 #: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Photos.php:922 +#: ../../Zotlabs/Module/Photos.php:927 msgid "Next" msgstr "Siguiente" -#: ../../Zotlabs/Module/Cdav.php:822 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 #: ../../Zotlabs/Module/Cal.php:346 msgid "Today" msgstr "Hoy" -#: ../../Zotlabs/Module/Cdav.php:823 ../../Zotlabs/Module/Events.php:695 +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 msgid "Month" msgstr "Mes" -#: ../../Zotlabs/Module/Cdav.php:824 ../../Zotlabs/Module/Events.php:696 +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 msgid "Week" msgstr "Semana" -#: ../../Zotlabs/Module/Cdav.php:825 ../../Zotlabs/Module/Events.php:697 +#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 msgid "Day" msgstr "Día" -#: ../../Zotlabs/Module/Cdav.php:826 +#: ../../Zotlabs/Module/Cdav.php:885 msgid "List month" msgstr "Lista mensual" -#: ../../Zotlabs/Module/Cdav.php:827 +#: ../../Zotlabs/Module/Cdav.php:886 msgid "List week" msgstr "Lista semanal" -#: ../../Zotlabs/Module/Cdav.php:828 +#: ../../Zotlabs/Module/Cdav.php:887 msgid "List day" msgstr "Lista diaria" -#: ../../Zotlabs/Module/Cdav.php:835 +#: ../../Zotlabs/Module/Cdav.php:894 msgid "More" msgstr "Más" -#: ../../Zotlabs/Module/Cdav.php:836 +#: ../../Zotlabs/Module/Cdav.php:895 msgid "Less" msgstr "Menos" -#: ../../Zotlabs/Module/Cdav.php:837 +#: ../../Zotlabs/Module/Cdav.php:896 msgid "Select calendar" msgstr "Seleccionar un calendario" -#: ../../Zotlabs/Module/Cdav.php:839 +#: ../../Zotlabs/Module/Cdav.php:898 msgid "Delete all" msgstr "Eliminar todos" -#: ../../Zotlabs/Module/Cdav.php:840 ../../Zotlabs/Module/Cdav.php:1129 +#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 #: ../../Zotlabs/Module/Admin/Plugins.php:423 #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Wiki.php:290 ../../Zotlabs/Module/Wiki.php:316 -#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Wiki.php:333 ../../Zotlabs/Module/Wiki.php:363 +#: ../../Zotlabs/Module/Connedit.php:942 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 #: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 #: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/js_upload/js_upload.php:46 #: ../../addon/gitwiki/Mod_Gitwiki.php:244 -#: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1324 -#: ../../include/conversation.php:1373 +#: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1369 +#: ../../include/conversation.php:1418 msgid "Cancel" msgstr "Cancelar" -#: ../../Zotlabs/Module/Cdav.php:841 +#: ../../Zotlabs/Module/Cdav.php:900 msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado." -#: ../../Zotlabs/Module/Cdav.php:969 -msgid "CardDAV" -msgstr "CardDAV" - -#: ../../Zotlabs/Module/Cdav.php:1111 +#: ../../Zotlabs/Module/Cdav.php:1170 #: ../../Zotlabs/Module/Sharedwithme.php:105 #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:174 ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:539 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:924 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:554 #: ../../Zotlabs/Storage/Browser.php:234 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 @@ -688,123 +685,123 @@ msgstr "CardDAV" msgid "Name" msgstr "Nombre" -#: ../../Zotlabs/Module/Cdav.php:1112 ../../Zotlabs/Module/Connedit.php:921 +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:925 msgid "Organisation" msgstr "Organización" -#: ../../Zotlabs/Module/Cdav.php:1113 ../../Zotlabs/Module/Connedit.php:922 +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:926 msgid "Title" msgstr "Título" -#: ../../Zotlabs/Module/Cdav.php:1114 ../../Zotlabs/Module/Connedit.php:923 +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:927 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Phone" msgstr "Teléfono" -#: ../../Zotlabs/Module/Cdav.php:1115 +#: ../../Zotlabs/Module/Cdav.php:1174 #: ../../Zotlabs/Module/Admin/Accounts.php:169 #: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Connedit.php:928 ../../Zotlabs/Module/Profiles.php:790 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1697 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1706 msgid "Email" msgstr "Correo electrónico" -#: ../../Zotlabs/Module/Cdav.php:1116 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:929 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Instant messenger" msgstr "Mensajería instantánea" -#: ../../Zotlabs/Module/Cdav.php:1117 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:930 #: ../../Zotlabs/Module/Profiles.php:792 msgid "Website" msgstr "Sitio web" -#: ../../Zotlabs/Module/Cdav.php:1118 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:927 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:793 msgid "Address" msgstr "Dirección" -#: ../../Zotlabs/Module/Cdav.php:1119 ../../Zotlabs/Module/Connedit.php:928 +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:932 #: ../../Zotlabs/Module/Profiles.php:794 msgid "Note" msgstr "Nota" -#: ../../Zotlabs/Module/Cdav.php:1120 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:933 #: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1290 -#: ../../include/connections.php:674 +#: ../../include/connections.php:682 msgid "Mobile" msgstr "Móvil" -#: ../../Zotlabs/Module/Cdav.php:1121 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:934 #: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1291 -#: ../../include/connections.php:675 +#: ../../include/connections.php:683 msgid "Home" msgstr "Inicio" -#: ../../Zotlabs/Module/Cdav.php:1122 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:935 #: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1294 -#: ../../include/connections.php:678 +#: ../../include/connections.php:686 msgid "Work" msgstr "Trabajo" -#: ../../Zotlabs/Module/Cdav.php:1124 ../../Zotlabs/Module/Connedit.php:933 +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:937 #: ../../Zotlabs/Module/Profiles.php:799 #: ../../addon/jappixmini/jappixmini.php:368 msgid "Add Contact" msgstr "Añadir un contacto" -#: ../../Zotlabs/Module/Cdav.php:1125 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:938 #: ../../Zotlabs/Module/Profiles.php:800 msgid "Add Field" msgstr "Añadir un campo" -#: ../../Zotlabs/Module/Cdav.php:1127 +#: ../../Zotlabs/Module/Cdav.php:1186 #: ../../Zotlabs/Module/Admin/Plugins.php:453 #: ../../Zotlabs/Module/Settings/Oauth.php:42 #: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Lib/Apps.php:384 +#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:383 msgid "Update" msgstr "Actualizar" -#: ../../Zotlabs/Module/Cdav.php:1130 ../../Zotlabs/Module/Connedit.php:939 +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:943 msgid "P.O. Box" msgstr "Buzón de correos" -#: ../../Zotlabs/Module/Cdav.php:1131 ../../Zotlabs/Module/Connedit.php:940 +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:944 msgid "Additional" msgstr "Adicional" -#: ../../Zotlabs/Module/Cdav.php:1132 ../../Zotlabs/Module/Connedit.php:941 +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:945 msgid "Street" msgstr "Calle" -#: ../../Zotlabs/Module/Cdav.php:1133 ../../Zotlabs/Module/Connedit.php:942 +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:946 msgid "Locality" msgstr "Localidad" -#: ../../Zotlabs/Module/Cdav.php:1134 ../../Zotlabs/Module/Connedit.php:943 +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:947 msgid "Region" msgstr "Provincia, región o estado" -#: ../../Zotlabs/Module/Cdav.php:1135 ../../Zotlabs/Module/Connedit.php:944 +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:948 msgid "ZIP Code" msgstr "Código postal" -#: ../../Zotlabs/Module/Cdav.php:1136 ../../Zotlabs/Module/Connedit.php:945 +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:949 #: ../../Zotlabs/Module/Profiles.php:760 msgid "Country" msgstr "País" -#: ../../Zotlabs/Module/Cdav.php:1183 +#: ../../Zotlabs/Module/Cdav.php:1242 msgid "Default Calendar" msgstr "Calendario por defecto" -#: ../../Zotlabs/Module/Cdav.php:1193 +#: ../../Zotlabs/Module/Cdav.php:1252 msgid "Default Addressbook" msgstr "Agenda de direcciones por defecto" @@ -813,7 +810,7 @@ msgid "This site is not a directory server" msgstr "Este sitio no es un servidor de directorio" #: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 -#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:403 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:431 msgid "You must be logged in to see this page." msgstr "Debe haber iniciado sesión para poder ver esta página." @@ -827,20 +824,10 @@ msgstr "Publicaciones y comentarios" msgid "Only posts" msgstr "Solo publicaciones" -#: ../../Zotlabs/Module/Channel.php:97 ../../Zotlabs/Lib/Apps.php:240 -#: ../../include/nav.php:175 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../Zotlabs/Module/Channel.php:112 +#: ../../Zotlabs/Module/Channel.php:107 msgid "Insufficient permissions. Request redirected to profile page." msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../Zotlabs/Module/Lang.php:8 ../../Zotlabs/Lib/Apps.php:256 -#: ../../addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "Idioma" - #: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 msgid "Export Channel" msgstr "Exportar el canal" @@ -901,16 +888,15 @@ msgstr "Estos ficheros pueden ser importados o restaurados visitando change theme settings" msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Mobile system theme" msgstr "Tema del sistema para móviles" -#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:294 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:294 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:295 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:295 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:296 msgid "Does this site allow new member registration?" msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:297 msgid "Invitation only" msgstr "Solo con una invitación" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:297 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:298 msgid "Which best describes the types of account offered by this hub?" msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Will be displayed prominently on the registration page." msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Site homepage to show visitors (default: login box)" msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Verify Email Addresses" msgstr "Verificar las direcciones de correo electrónico" -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Reply-to email address for system generated email." msgstr "Dirección de respuesta para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Sender (From) email address for system generated email." msgstr "Dirección del remitente (From) para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Name of email sender for system generated email." msgstr "Nombre del remitente del correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" -#: ../../Zotlabs/Module/Admin/Site.php:317 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin/Site.php:317 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Path to ImageMagick convert program" +msgstr "Ruta al programa de conversión de ImageMagick" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:324 msgid "Expiration period in days for imported (grid/network) content" msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:324 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" @@ -3013,8 +3016,8 @@ msgstr "Información adicional (opcional)" #: ../../Zotlabs/Module/Admin/Profs.php:74 #: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1022 -#: ../../include/text.php:1034 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1030 +#: ../../include/text.php:1042 msgid "Save" msgstr "Guardar" @@ -3213,16 +3216,16 @@ msgid "Visible to:" msgstr "Visible para:" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:117 ../../include/acl_selectors.php:183 +#: ../../Zotlabs/Module/Acl.php:118 ../../include/acl_selectors.php:183 msgctxt "acl" msgid "Profile" msgstr "Perfil" -#: ../../Zotlabs/Module/Moderate.php:37 +#: ../../Zotlabs/Module/Moderate.php:55 msgid "Comment approved" msgstr "El comentario ha sido aprobado" -#: ../../Zotlabs/Module/Moderate.php:41 +#: ../../Zotlabs/Module/Moderate.php:59 msgid "Comment deleted" msgstr "Se ha eliminado el comentario" @@ -3246,25 +3249,25 @@ msgstr "Nombre de la autorización" #: ../../Zotlabs/Module/Settings/Permcats.php:103 #: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Connedit.php:908 msgid "My Settings" msgstr "Mis ajustes" #: ../../Zotlabs/Module/Settings/Permcats.php:105 #: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:899 +#: ../../Zotlabs/Module/Connedit.php:903 msgid "inherited" msgstr "heredado" #: ../../Zotlabs/Module/Settings/Permcats.php:108 #: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Connedit.php:910 msgid "Individual Permissions" msgstr "Permisos individuales" #: ../../Zotlabs/Module/Settings/Permcats.php:109 #: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Connedit.php:911 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -3277,9 +3280,9 @@ msgstr "Algunos permisos pueden ser heredados de los privacy settings, which have higher " @@ -5457,18 +5513,14 @@ msgid "" "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." -#: ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Connedit.php:913 msgid "Last update:" msgstr "Última actualización:" -#: ../../Zotlabs/Module/Connedit.php:918 +#: ../../Zotlabs/Module/Connedit.php:922 msgid "Details" msgstr "Detalles" -#: ../../Zotlabs/Module/Chat.php:94 ../../Zotlabs/Lib/Apps.php:228 -msgid "My Chatrooms" -msgstr "Mis salas de chat" - #: ../../Zotlabs/Module/Chat.php:181 msgid "Room not found" msgstr "Sala no encontrada" @@ -5494,13 +5546,13 @@ msgid "Bookmark this room" msgstr "Añadir esta sala a Marcadores" #: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1260 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1296 msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" #: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:742 -#: ../../include/conversation.php:1370 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:757 +#: ../../include/conversation.php:1415 msgid "Encrypt text" msgstr "Cifrar texto" @@ -5533,9 +5585,14 @@ msgstr "Caducidad" msgid "min" msgstr "min" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:242 +#: ../../include/conversation.php:1814 ../../include/nav.php:422 +msgid "Photos" +msgstr "Fotos" + #: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:237 -#: ../../Zotlabs/Storage/Browser.php:225 ../../Zotlabs/Storage/Browser.php:247 -#: ../../include/conversation.php:1788 ../../include/nav.php:386 +#: ../../Zotlabs/Storage/Browser.php:225 ../../include/conversation.php:1822 +#: ../../include/nav.php:430 msgid "Files" msgstr "Ficheros" @@ -5575,7 +5632,7 @@ msgstr "El menú se puede usar para guardar marcadores" msgid "Submit and proceed" msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2281 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2289 msgid "Menus" msgstr "Menús" @@ -5627,14 +5684,13 @@ msgstr "El título del menú tal como será visto por los demás" msgid "Allow bookmarks" msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2282 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2290 msgid "Layouts" msgstr "Plantillas" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Module/Help.php:18 -#: ../../Zotlabs/Lib/Apps.php:245 ../../include/nav.php:157 -#: ../../include/nav.php:264 ../../include/help.php:55 -#: ../../include/help.php:61 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:245 +#: ../../include/nav.php:201 ../../include/nav.php:301 +#: ../../include/help.php:68 ../../include/help.php:74 msgid "Help" msgstr "Ayuda" @@ -5651,12 +5707,12 @@ msgid "Download PDL file" msgstr "Descargar el fichero PDL" #: ../../Zotlabs/Module/Tagger.php:55 ../../include/markdown.php:141 -#: ../../include/bbcode.php:334 +#: ../../include/bbcode.php:333 msgid "post" msgstr "la entrada" #: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:146 -#: ../../include/text.php:1938 +#: ../../include/text.php:1946 msgid "comment" msgstr "el comentario" @@ -5689,7 +5745,7 @@ msgid "Could not create privacy group." msgstr "No se puede crear el grupo de canales" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:3892 +#: ../../include/items.php:3941 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." @@ -5824,7 +5880,7 @@ msgid "View this profile" msgstr "Ver este perfil" #: ../../Zotlabs/Module/Profiles.php:728 ../../Zotlabs/Module/Profiles.php:827 -#: ../../include/channel.php:1183 +#: ../../include/channel.php:1284 msgid "Edit visibility" msgstr "Editar visibilidad" @@ -5836,7 +5892,7 @@ msgstr "Gestión del perfil" msgid "Change cover photo" msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1154 +#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1255 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" @@ -5856,7 +5912,7 @@ msgstr "Eliminar este perfil" msgid "Add profile things" msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1654 +#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1688 msgid "Personal" msgstr "Personales" @@ -6001,12 +6057,12 @@ msgstr "Mis otros canales" msgid "Communications" msgstr "Comunicaciones" -#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1179 +#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1280 msgid "Profile Image" msgstr "Imagen del perfil" -#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1161 -#: ../../include/nav.php:105 +#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1262 +#: ../../include/nav.php:144 msgid "Edit Profiles" msgstr "Editar perfiles" @@ -6023,7 +6079,7 @@ msgid "Create a new channel" msgstr "Crear un nuevo canal" #: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:234 -#: ../../include/nav.php:199 +#: ../../include/nav.php:129 ../../include/nav.php:215 msgid "Channel Manager" msgstr "Administración de canales" @@ -6057,6 +6113,16 @@ msgstr "%d nuevas solicitudes de conexión" msgid "Delegated Channel" msgstr "Canal delegado" +#: ../../Zotlabs/Module/Cards.php:38 ../../Zotlabs/Module/Cards.php:178 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/conversation.php:1873 +#: ../../include/features.php:122 ../../include/nav.php:479 +msgid "Cards" +msgstr "Fichas" + +#: ../../Zotlabs/Module/Cards.php:95 +msgid "Add Card" +msgstr "Añadir una ficha" + #: ../../Zotlabs/Module/Dirsearch.php:33 msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" @@ -6108,7 +6174,7 @@ msgid "No ratings" msgstr "Ninguna valoración" #: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1029 +#: ../../include/conversation.php:1065 msgid "Ratings" msgstr "Valoraciones" @@ -6124,12 +6190,6 @@ msgstr "Sitio web:" msgid "Description: " msgstr "Descripción:" -#: ../../Zotlabs/Module/Webpages.php:38 ../../Zotlabs/Module/Webpages.php:237 -#: ../../Zotlabs/Lib/Apps.php:238 ../../include/conversation.php:1838 -#: ../../include/nav.php:435 -msgid "Webpages" -msgstr "Páginas web" - #: ../../Zotlabs/Module/Webpages.php:54 msgid "Import Webpage Elements" msgstr "Importar elementos de una página web" @@ -6146,6 +6206,11 @@ msgstr "Exportar elementos de una página web" msgid "Export selected" msgstr "Exportar los elementos seleccionados" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:238 +#: ../../include/conversation.php:1884 ../../include/nav.php:491 +msgid "Webpages" +msgstr "Páginas web" + #: ../../Zotlabs/Module/Webpages.php:248 msgid "Actions" msgstr "Acciones" @@ -6178,11 +6243,44 @@ msgstr "No se han detectado elementos de ninguna página web." msgid "Import complete." msgstr "Importación completada." +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account" +" password." +msgstr "Los cambios en el nombre de un canal no está permitida hasta pasadas 48 horas desde el cambio de contraseña de la cuenta." + +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:209 +#: ../../include/channel.php:579 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." + +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:214 +#: ../../include/channel.php:584 +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 miembros de este sitio." + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "Cambiar el alias o la dirección del canal" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "¡Cualquier/todas las conexiones en otras redes se perderán!" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "Nueva dirección del canal" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "Renombrar el canal" + #: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 msgid "Item is not editable" msgstr "El elemento no es editable" -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:140 +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:178 msgid "Edit post" msgstr "Editar la entrada" @@ -6243,7 +6341,7 @@ msgstr "correo enviado" msgid "Delivery report for %1$s" msgstr "Informe de entrega para %1$s" -#: ../../Zotlabs/Module/Dreport.php:151 +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:60 msgid "Options" msgstr "Opciones" @@ -6268,7 +6366,7 @@ msgid "*" msgstr "*" #: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:209 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:218 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" @@ -6324,10 +6422,6 @@ msgstr "Fuente eliminada" msgid "Unable to remove source." msgstr "No se puede eliminar la fuente." -#: ../../Zotlabs/Module/Rpost.php:63 ../../Zotlabs/Lib/Apps.php:257 -msgid "Post" -msgstr "Publicación" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Me gusta/No me gusta" @@ -6363,13 +6457,14 @@ msgstr "Canal no disponible." msgid "Previous action reversed." msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Like.php:423 ../../addon/diaspora/Receiver.php:1399 -#: ../../include/conversation.php:160 +#: ../../Zotlabs/Module/Like.php:423 ../../addon/diaspora/Receiver.php:1453 +#: ../../addon/pubcrawl/as.php:1323 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:425 ../../include/conversation.php:163 +#: ../../Zotlabs/Module/Like.php:425 ../../addon/pubcrawl/as.php:1325 +#: ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" @@ -6412,10 +6507,6 @@ msgstr "Acción completada." msgid "Thank you." msgstr "Gracias." -#: ../../Zotlabs/Module/Directory.php:80 ../../Zotlabs/Lib/Apps.php:244 -msgid "Directory" -msgstr "Directorio" - #: ../../Zotlabs/Module/Directory.php:245 #, php-format msgid "%d rating" @@ -6435,11 +6526,11 @@ msgstr "Estado:" msgid "Homepage: " msgstr "Página personal:" -#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1416 +#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1516 msgid "Age:" msgstr "Edad:" -#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1251 +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1352 #: ../../include/event.php:52 ../../include/event.php:84 msgid "Location:" msgstr "Ubicación:" @@ -6448,17 +6539,17 @@ msgstr "Ubicación:" msgid "Description:" msgstr "Descripción:" -#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1432 +#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1532 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1440 +#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1540 msgid "About:" msgstr "Sobre mí:" #: ../../Zotlabs/Module/Directory.php:328 ../../Zotlabs/Module/Suggest.php:56 #: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:999 ../../include/channel.php:1236 +#: ../../include/conversation.php:1035 ../../include/channel.php:1337 #: ../../include/connections.php:111 msgid "Connect" msgstr "Conectar" @@ -6536,11 +6627,6 @@ msgstr "Búsqueda de canales" msgid "Lookup xchan beginning with (or webbie): " msgstr "Buscar un canal (o un \"webbie\") que comience por:" -#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Lib/Apps.php:232 -#: ../../include/features.php:333 -msgid "Suggest Channels" -msgstr "Sugerir canales" - #: ../../Zotlabs/Module/Suggest.php:39 msgid "" "No suggestions available. If this is a new site, please try again in 24 " @@ -6575,11 +6661,6 @@ msgstr "No se puede verificar el canal solicitado." msgid "Selected channel has private message restrictions. Send failed." msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." -#: ../../Zotlabs/Module/Mail.php:143 ../../Zotlabs/Lib/Apps.php:246 -#: ../../include/nav.php:187 -msgid "Mail" -msgstr "Correo" - #: ../../Zotlabs/Module/Mail.php:160 msgid "Messages" msgstr "Mensajes" @@ -6617,7 +6698,7 @@ msgid "Subject:" msgstr "Asunto:" #: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -#: ../../include/conversation.php:1320 +#: ../../include/conversation.php:1365 msgid "Attach file" msgstr "Adjuntar fichero" @@ -6626,7 +6707,7 @@ msgid "Send" msgstr "Enviar" #: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1365 +#: ../../include/conversation.php:1410 msgid "Set expiration date" msgstr "Configurar fecha de caducidad" @@ -6698,7 +6779,7 @@ msgstr "Estadísticas" msgid "Software" msgstr "Software" -#: ../../Zotlabs/Module/Pubsites.php:48 +#: ../../Zotlabs/Module/Pubsites.php:49 msgid "Rate" msgstr "Valorar" @@ -6752,14 +6833,10 @@ msgstr "Escriba un nombre de carpeta" msgid "or select an existing folder (doubleclick)" msgstr "o seleccione una (con un doble click)" -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:137 +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:141 msgid "Save to Folder" msgstr "Guardar en carpeta" -#: ../../Zotlabs/Module/Probe.php:11 ../../Zotlabs/Lib/Apps.php:231 -msgid "Remote Diagnostics" -msgstr "Diagnóstico remoto" - #: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 #, php-format msgid "Fetching URL returns error: %1$s" @@ -6848,8 +6925,8 @@ msgstr "sí" msgid "Membership on this site is by invitation only." msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Register.php:268 ../../boot.php:1582 -#: ../../include/nav.php:145 +#: ../../Zotlabs/Module/Register.php:268 ../../boot.php:1620 +#: ../../include/nav.php:189 msgid "Register" msgstr "Registrarse" @@ -6864,30 +6941,30 @@ msgstr "Este sitio puede requerir una verificación de correo electrónico despu msgid "Cover Photos" msgstr "Imágenes de portada del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4320 msgid "female" msgstr "mujer" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4274 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4321 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4322 msgid "male" msgstr "hombre" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4276 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4323 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4278 +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4325 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1878 +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1980 msgid "cover photo" msgstr "Imagen de portada del perfil" @@ -6899,8 +6976,8 @@ msgstr "Subir imagen de portada del perfil" msgid "Documentation Search" msgstr "Búsqueda de Documentación" -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1770 -#: ../../include/nav.php:368 +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1804 +#: ../../include/nav.php:412 msgid "About" msgstr "Mi perfil" @@ -6916,14 +6993,18 @@ msgstr "Desarrolladores" msgid "Tutorials" msgstr "Tutoriales" -#: ../../Zotlabs/Module/Help.php:93 +#: ../../Zotlabs/Module/Help.php:95 msgid "$Projectname Documentation" msgstr "Documentación de $Projectname" -#: ../../Zotlabs/Module/Help.php:94 +#: ../../Zotlabs/Module/Help.php:96 msgid "Contents" msgstr "Contenidos" +#: ../../Zotlabs/Module/Display.php:340 +msgid "Item has been removed." +msgstr "Se ha eliminado el elemento." + #: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 msgid "Tag removed" msgstr "Etiqueta eliminada." @@ -6936,7 +7017,7 @@ msgstr "Eliminar etiqueta del elemento." msgid "Select a tag to remove: " msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Network.php:96 +#: ../../Zotlabs/Module/Network.php:97 msgid "No such group" msgstr "No se encuentra el grupo" @@ -6952,10 +7033,6 @@ msgstr "foro" msgid "Search Results For:" msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Network.php:157 ../../Zotlabs/Lib/Apps.php:235 -msgid "Activity" -msgstr "Actividad" - #: ../../Zotlabs/Module/Network.php:221 msgid "Privacy group is empty" msgstr "El grupo de canales está vacío" @@ -6972,14 +7049,10 @@ msgstr "Conexión no válida." msgid "Invalid channel." msgstr "El canal no es válido." -#: ../../Zotlabs/Module/Acl.php:344 +#: ../../Zotlabs/Module/Acl.php:351 msgid "network" msgstr "red" -#: ../../Zotlabs/Module/Acl.php:354 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 #: ../../addon/opensearch/opensearch.php:42 msgid "$Projectname" @@ -7039,14 +7112,14 @@ msgstr "Mostrar en la carpeta compartida con sus contactos" msgid "No channel." msgstr "Ningún canal." -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Conexiones comunes" - -#: ../../Zotlabs/Module/Common.php:48 +#: ../../Zotlabs/Module/Common.php:45 msgid "No connections in common." msgstr "Ninguna conexión en común." +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "Ver las conexiones comunes" + #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Sin conexiones." @@ -7137,6 +7210,10 @@ msgstr "Valoración (esta información es pública)" msgid "Optionally explain your rating (this information is public)" msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "Editar la ficha" + #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." msgstr "No se ha encontrado una cuenta válida." @@ -7161,7 +7238,7 @@ msgid "" "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." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1609 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1648 msgid "Password Reset" msgstr "Restablecer la contraseña" @@ -7206,12 +7283,8 @@ msgstr "Introduzca y envíe su dirección de correo electrónico para el restabl msgid "Email Address" msgstr "Dirección de correo electrónico" -#: ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "Reiniciar" - #: ../../Zotlabs/Module/Notifications.php:43 -#: ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../Zotlabs/Lib/ThreadItem.php:397 msgid "Mark all seen" msgstr "Marcar todo como visto" @@ -7247,15 +7320,58 @@ msgstr "Administrador del sitio" msgid "Report Bug" msgstr "Informe de errores" +#: ../../Zotlabs/Lib/Apps.php:227 +msgid "View Bookmarks" +msgstr "Ver los marcadores" + +#: ../../Zotlabs/Lib/Apps.php:228 +msgid "My Chatrooms" +msgstr "Mis salas de chat" + #: ../../Zotlabs/Lib/Apps.php:230 msgid "Firefox Share" msgstr "Servicio de compartición de Firefox" -#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1601 -#: ../../include/nav.php:113 +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Remote Diagnostics" +msgstr "Diagnóstico remoto" + +#: ../../Zotlabs/Lib/Apps.php:232 ../../include/features.php:342 +msgid "Suggest Channels" +msgstr "Sugerir canales" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1639 +#: ../../include/nav.php:153 ../../include/nav.php:157 msgid "Login" msgstr "Iniciar sesión" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/nav.php:98 +msgid "Activity" +msgstr "Actividad" + +#: ../../Zotlabs/Lib/Apps.php:239 ../../include/conversation.php:1900 +#: ../../include/features.php:95 ../../include/nav.php:507 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:240 ../../include/nav.php:102 +msgid "Channel Home" +msgstr "Mi canal" + +#: ../../Zotlabs/Lib/Apps.php:243 ../../include/conversation.php:1833 +#: ../../include/conversation.php:1836 ../../include/nav.php:124 +#: ../../include/nav.php:441 ../../include/nav.php:444 +msgid "Events" +msgstr "Eventos" + +#: ../../Zotlabs/Lib/Apps.php:244 +msgid "Directory" +msgstr "Directorio" + +#: ../../Zotlabs/Lib/Apps.php:246 ../../include/nav.php:116 +msgid "Mail" +msgstr "Correo" + #: ../../Zotlabs/Lib/Apps.php:249 msgid "Chat" msgstr "Chat" @@ -7272,29 +7388,41 @@ msgstr "Sugerir" msgid "Random Channel" msgstr "Canal aleatorio" +#: ../../Zotlabs/Lib/Apps.php:254 +msgid "Invite" +msgstr "Invitar" + #: ../../Zotlabs/Lib/Apps.php:255 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "Funcionalidades" +#: ../../Zotlabs/Lib/Apps.php:256 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "Idioma" + +#: ../../Zotlabs/Lib/Apps.php:257 +msgid "Post" +msgstr "Publicación" + #: ../../Zotlabs/Lib/Apps.php:258 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "Foto del perfil" -#: ../../Zotlabs/Lib/Apps.php:391 +#: ../../Zotlabs/Lib/Apps.php:397 msgid "Purchase" msgstr "Comprar" -#: ../../Zotlabs/Lib/Apps.php:395 +#: ../../Zotlabs/Lib/Apps.php:401 msgid "Undelete" msgstr "Recuperar" -#: ../../Zotlabs/Lib/Apps.php:401 +#: ../../Zotlabs/Lib/Apps.php:407 msgid "Add to app-tray" msgstr "Añadir a la bandeja de aplicaciones" -#: ../../Zotlabs/Lib/Apps.php:402 +#: ../../Zotlabs/Lib/Apps.php:408 msgid "Remove from app-tray" msgstr "Quitar de la bandeja de aplicaciones" @@ -7319,71 +7447,71 @@ msgid "publisher" msgstr "editor" #: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:83 +#: ../../Zotlabs/Lib/NativeWikiPage.php:90 msgid "(No Title)" msgstr "(Sin título)" -#: ../../Zotlabs/Lib/NativeWikiPage.php:97 +#: ../../Zotlabs/Lib/NativeWikiPage.php:104 msgid "Wiki page create failed." msgstr "Se ha producido un error en la creación de la página wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:110 +#: ../../Zotlabs/Lib/NativeWikiPage.php:117 msgid "Wiki not found." msgstr "No se ha encontrado el wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:121 +#: ../../Zotlabs/Lib/NativeWikiPage.php:128 msgid "Destination name already exists" msgstr "El nombre de destino ya existe" -#: ../../Zotlabs/Lib/NativeWikiPage.php:147 -#: ../../Zotlabs/Lib/NativeWikiPage.php:342 +#: ../../Zotlabs/Lib/NativeWikiPage.php:160 +#: ../../Zotlabs/Lib/NativeWikiPage.php:355 msgid "Page not found" msgstr "No se ha encontrado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:177 +#: ../../Zotlabs/Lib/NativeWikiPage.php:191 msgid "Error reading page content" msgstr "Se ha producido un error al leer el contenido de la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:333 -#: ../../Zotlabs/Lib/NativeWikiPage.php:381 -#: ../../Zotlabs/Lib/NativeWikiPage.php:448 -#: ../../Zotlabs/Lib/NativeWikiPage.php:489 +#: ../../Zotlabs/Lib/NativeWikiPage.php:347 +#: ../../Zotlabs/Lib/NativeWikiPage.php:396 +#: ../../Zotlabs/Lib/NativeWikiPage.php:463 +#: ../../Zotlabs/Lib/NativeWikiPage.php:504 msgid "Error reading wiki" msgstr "Se ha producido un error al leer el wiki" -#: ../../Zotlabs/Lib/NativeWikiPage.php:369 +#: ../../Zotlabs/Lib/NativeWikiPage.php:384 msgid "Page update failed." msgstr "Se ha producido un error al actualizar la página." -#: ../../Zotlabs/Lib/NativeWikiPage.php:403 +#: ../../Zotlabs/Lib/NativeWikiPage.php:418 msgid "Nothing deleted" msgstr "No se ha eliminado nada" -#: ../../Zotlabs/Lib/NativeWikiPage.php:469 +#: ../../Zotlabs/Lib/NativeWikiPage.php:484 msgid "Compare: object not found." msgstr "No se ha encontrado un objeto para comparar." -#: ../../Zotlabs/Lib/NativeWikiPage.php:475 +#: ../../Zotlabs/Lib/NativeWikiPage.php:490 msgid "Page updated" msgstr "Se ha actualizado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:478 +#: ../../Zotlabs/Lib/NativeWikiPage.php:493 msgid "Untitled" msgstr "Sin título" -#: ../../Zotlabs/Lib/NativeWikiPage.php:484 +#: ../../Zotlabs/Lib/NativeWikiPage.php:499 msgid "Wiki resource_id required for git commit" msgstr "Se necesita Wiki resource_id para el git commit" -#: ../../Zotlabs/Lib/NativeWikiPage.php:540 +#: ../../Zotlabs/Lib/NativeWikiPage.php:555 #: ../../Zotlabs/Widget/Wiki_page_history.php:23 msgctxt "wiki_history" msgid "Message" msgstr "Mensaje" -#: ../../Zotlabs/Lib/NativeWikiPage.php:578 -#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:667 -#: ../../include/bbcode.php:813 +#: ../../Zotlabs/Lib/NativeWikiPage.php:593 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:818 msgid "Different viewers will see this text differently" msgstr "Visitantes diferentes verán este texto de forma distinta" @@ -7475,7 +7603,7 @@ msgid "$Projectname Notification" msgstr "Notificación de $Projectname" #: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:283 -#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:46 +#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "$projectname" @@ -7483,7 +7611,7 @@ msgstr "$projectname" msgid "Thank You," msgstr "Gracias," -#: ../../Zotlabs/Lib/Enotify.php:65 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -7701,7 +7829,11 @@ msgstr "ha creado una nueva entrada" msgid "commented on %s's post" msgstr "ha comentado la entrada de %s" -#: ../../Zotlabs/Lib/NativeWiki.php:128 +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "El wiki se ha actualizado con éxito" + +#: ../../Zotlabs/Lib/NativeWiki.php:198 msgid "Wiki files deleted successfully" msgstr "Se han borrado con éxito los ficheros del wiki" @@ -7715,210 +7847,218 @@ msgstr "Error de actualización en %s" msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../Zotlabs/Lib/ThreadItem.php:96 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:681 msgid "Private Message" msgstr "Mensaje Privado" -#: ../../Zotlabs/Lib/ThreadItem.php:133 ../../include/conversation.php:648 +#: ../../Zotlabs/Lib/ThreadItem.php:137 ../../include/conversation.php:673 msgid "Select" msgstr "Seleccionar" -#: ../../Zotlabs/Lib/ThreadItem.php:158 +#: ../../Zotlabs/Lib/ThreadItem.php:162 msgid "I will attend" msgstr "Participaré" -#: ../../Zotlabs/Lib/ThreadItem.php:158 +#: ../../Zotlabs/Lib/ThreadItem.php:162 msgid "I will not attend" msgstr "No participaré" -#: ../../Zotlabs/Lib/ThreadItem.php:158 +#: ../../Zotlabs/Lib/ThreadItem.php:162 msgid "I might attend" msgstr "Quizá participe" -#: ../../Zotlabs/Lib/ThreadItem.php:168 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I agree" msgstr "Estoy de acuerdo" -#: ../../Zotlabs/Lib/ThreadItem.php:168 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I disagree" msgstr "No estoy de acuerdo" -#: ../../Zotlabs/Lib/ThreadItem.php:168 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I abstain" msgstr "Me abstengo" -#: ../../Zotlabs/Lib/ThreadItem.php:224 +#: ../../Zotlabs/Lib/ThreadItem.php:228 msgid "Add Star" msgstr "Destacar añadiendo una estrella" -#: ../../Zotlabs/Lib/ThreadItem.php:225 +#: ../../Zotlabs/Lib/ThreadItem.php:229 msgid "Remove Star" msgstr "Eliminar estrella" -#: ../../Zotlabs/Lib/ThreadItem.php:226 +#: ../../Zotlabs/Lib/ThreadItem.php:230 msgid "Toggle Star Status" msgstr "Activar o desactivar el estado de entrada preferida" -#: ../../Zotlabs/Lib/ThreadItem.php:230 +#: ../../Zotlabs/Lib/ThreadItem.php:234 msgid "starred" msgstr "preferidas" -#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:663 +#: ../../Zotlabs/Lib/ThreadItem.php:244 ../../include/conversation.php:688 msgid "Message signature validated" msgstr "Firma de mensaje validada" -#: ../../Zotlabs/Lib/ThreadItem.php:241 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/ThreadItem.php:245 ../../include/conversation.php:689 msgid "Message signature incorrect" msgstr "Firma de mensaje incorrecta" -#: ../../Zotlabs/Lib/ThreadItem.php:249 +#: ../../Zotlabs/Lib/ThreadItem.php:253 msgid "Add Tag" msgstr "Añadir etiqueta" -#: ../../Zotlabs/Lib/ThreadItem.php:267 ../../include/taxonomy.php:355 +#: ../../Zotlabs/Lib/ThreadItem.php:271 ../../include/taxonomy.php:433 msgid "like" msgstr "me gusta" -#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:356 +#: ../../Zotlabs/Lib/ThreadItem.php:272 ../../include/taxonomy.php:434 msgid "dislike" msgstr "no me gusta" -#: ../../Zotlabs/Lib/ThreadItem.php:272 +#: ../../Zotlabs/Lib/ThreadItem.php:276 msgid "Share This" msgstr "Compartir esto" -#: ../../Zotlabs/Lib/ThreadItem.php:272 +#: ../../Zotlabs/Lib/ThreadItem.php:276 msgid "share" msgstr "compartir" -#: ../../Zotlabs/Lib/ThreadItem.php:281 +#: ../../Zotlabs/Lib/ThreadItem.php:285 msgid "Delivery Report" msgstr "Informe de transmisión" -#: ../../Zotlabs/Lib/ThreadItem.php:299 +#: ../../Zotlabs/Lib/ThreadItem.php:303 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comentario" msgstr[1] "%d comentarios" -#: ../../Zotlabs/Lib/ThreadItem.php:328 ../../Zotlabs/Lib/ThreadItem.php:329 +#: ../../Zotlabs/Lib/ThreadItem.php:333 ../../Zotlabs/Lib/ThreadItem.php:334 #, php-format msgid "View %s's profile - %s" msgstr "Ver el perfil de %s - %s" -#: ../../Zotlabs/Lib/ThreadItem.php:332 +#: ../../Zotlabs/Lib/ThreadItem.php:337 msgid "to" msgstr "a" -#: ../../Zotlabs/Lib/ThreadItem.php:333 +#: ../../Zotlabs/Lib/ThreadItem.php:338 msgid "via" msgstr "mediante" -#: ../../Zotlabs/Lib/ThreadItem.php:334 +#: ../../Zotlabs/Lib/ThreadItem.php:339 msgid "Wall-to-Wall" msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../Zotlabs/Lib/ThreadItem.php:335 +#: ../../Zotlabs/Lib/ThreadItem.php:340 msgid "via Wall-To-Wall:" msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:715 +#: ../../Zotlabs/Lib/ThreadItem.php:353 ../../include/conversation.php:747 #, php-format msgid "from %s" msgstr "desde %s" -#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:718 +#: ../../Zotlabs/Lib/ThreadItem.php:356 ../../include/conversation.php:750 #, php-format msgid "last edited: %s" msgstr "último cambio: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:357 ../../include/conversation.php:751 #, php-format msgid "Expires: %s" msgstr "Caduca: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:358 +#: ../../Zotlabs/Lib/ThreadItem.php:363 msgid "Attend" msgstr "Participar o asistir" -#: ../../Zotlabs/Lib/ThreadItem.php:359 +#: ../../Zotlabs/Lib/ThreadItem.php:364 msgid "Attendance Options" msgstr "Opciones de participación o asistencia" -#: ../../Zotlabs/Lib/ThreadItem.php:360 +#: ../../Zotlabs/Lib/ThreadItem.php:365 msgid "Vote" msgstr "Votar" -#: ../../Zotlabs/Lib/ThreadItem.php:361 +#: ../../Zotlabs/Lib/ThreadItem.php:366 msgid "Voting Options" msgstr "Opciones de votación" -#: ../../Zotlabs/Lib/ThreadItem.php:382 +#: ../../Zotlabs/Lib/ThreadItem.php:387 #: ../../addon/bookmarker/bookmarker.php:38 msgid "Save Bookmarks" msgstr "Guardar en Marcadores" -#: ../../Zotlabs/Lib/ThreadItem.php:383 +#: ../../Zotlabs/Lib/ThreadItem.php:388 msgid "Add to Calendar" msgstr "Añadir al calendario" -#: ../../Zotlabs/Lib/ThreadItem.php:441 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/ThreadItem.php:415 ../../include/conversation.php:471 +msgid "This is an unsaved preview" +msgstr "Esta es una previsualización sin guardar" + +#: ../../Zotlabs/Lib/ThreadItem.php:447 ../../include/js_strings.php:7 #, php-format msgid "%s show all" msgstr "%s mostrar todo" -#: ../../Zotlabs/Lib/ThreadItem.php:731 ../../include/conversation.php:1315 +#: ../../Zotlabs/Lib/ThreadItem.php:744 ../../include/conversation.php:1360 msgid "Bold" msgstr "Negrita" -#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1316 +#: ../../Zotlabs/Lib/ThreadItem.php:745 ../../include/conversation.php:1361 msgid "Italic" msgstr "Itálico " -#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1317 +#: ../../Zotlabs/Lib/ThreadItem.php:746 ../../include/conversation.php:1362 msgid "Underline" msgstr "Subrayar" -#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1318 +#: ../../Zotlabs/Lib/ThreadItem.php:747 ../../include/conversation.php:1363 msgid "Quote" msgstr "Citar" -#: ../../Zotlabs/Lib/ThreadItem.php:735 ../../include/conversation.php:1319 +#: ../../Zotlabs/Lib/ThreadItem.php:748 ../../include/conversation.php:1364 msgid "Code" msgstr "Código" -#: ../../Zotlabs/Lib/ThreadItem.php:736 +#: ../../Zotlabs/Lib/ThreadItem.php:749 msgid "Image" msgstr "Imagen" -#: ../../Zotlabs/Lib/ThreadItem.php:737 +#: ../../Zotlabs/Lib/ThreadItem.php:750 +msgid "Attach File" +msgstr "Fichero adjunto" + +#: ../../Zotlabs/Lib/ThreadItem.php:751 msgid "Insert Link" msgstr "Insertar enlace" -#: ../../Zotlabs/Lib/ThreadItem.php:738 +#: ../../Zotlabs/Lib/ThreadItem.php:752 msgid "Video" msgstr "Vídeo" -#: ../../Zotlabs/Lib/ThreadItem.php:747 +#: ../../Zotlabs/Lib/ThreadItem.php:762 msgid "Your full name (required)" msgstr "Su nombre completo (requerido)" -#: ../../Zotlabs/Lib/ThreadItem.php:748 +#: ../../Zotlabs/Lib/ThreadItem.php:763 msgid "Your email address (required)" msgstr "Su dirección de correo electrónico (requerido)" -#: ../../Zotlabs/Lib/ThreadItem.php:749 +#: ../../Zotlabs/Lib/ThreadItem.php:764 msgid "Your website URL (optional)" msgstr "La URL de su sitio web (opcional)" -#: ../../Zotlabs/Zot/Auth.php:138 +#: ../../Zotlabs/Zot/Auth.php:152 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." -#: ../../Zotlabs/Zot/Auth.php:250 ../../addon/openid/Mod_Openid.php:76 +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 #: ../../addon/openid/Mod_Openid.php:178 #, php-format msgid "Welcome %s. Remote authentication successful." @@ -7928,7 +8068,7 @@ msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2692 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2707 msgid "Collection" msgstr "Colección" @@ -8075,12 +8215,14 @@ msgstr "Seleccionar una agenda para importarla" #: ../../Zotlabs/Widget/Appcategories.php:39 #: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:91 -#: ../../include/taxonomy.php:227 ../../include/taxonomy.php:309 +#: ../../include/contact_widgets.php:132 ../../include/taxonomy.php:285 +#: ../../include/taxonomy.php:367 ../../include/taxonomy.php:387 msgid "Categories" msgstr "Temas" #: ../../Zotlabs/Widget/Appcategories.php:42 ../../Zotlabs/Widget/Filer.php:31 #: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/contact_widgets.php:135 msgid "Everything" msgstr "Todo" @@ -8108,21 +8250,21 @@ msgstr "Menú de correo privado" msgid "Combined View" msgstr "Vista combinada" -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:190 +#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:119 msgid "Inbox" msgstr "Bandeja de entrada" -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:191 +#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:120 msgid "Outbox" msgstr "Bandeja de salida" -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:192 +#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:121 msgid "New Message" msgstr "Nuevo mensaje" #: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1813 ../../include/conversation.php:1816 -#: ../../include/nav.php:411 ../../include/nav.php:414 +#: ../../include/conversation.php:1847 ../../include/conversation.php:1850 +#: ../../include/nav.php:455 ../../include/nav.php:458 msgid "Chatrooms" msgstr "Salas de chat" @@ -8204,7 +8346,7 @@ msgstr "foto/imagen" msgid "Remove term" msgstr "Eliminar término" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:297 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:306 msgid "Saved Searches" msgstr "Búsquedas guardadas" @@ -8216,15 +8358,15 @@ msgstr "añadir" msgid "Notes" msgstr "Notas" -#: ../../Zotlabs/Widget/Wiki_pages.php:52 ../../addon/gitwiki/gitwiki.php:76 +#: ../../Zotlabs/Widget/Wiki_pages.php:47 ../../addon/gitwiki/gitwiki.php:76 msgid "Wiki Pages" msgstr "Páginas del wiki" -#: ../../Zotlabs/Widget/Wiki_pages.php:58 ../../addon/gitwiki/gitwiki.php:81 +#: ../../Zotlabs/Widget/Wiki_pages.php:53 ../../addon/gitwiki/gitwiki.php:81 msgid "Add new page" msgstr "Añadir una nueva página" -#: ../../Zotlabs/Widget/Wiki_pages.php:59 ../../addon/gitwiki/gitwiki.php:82 +#: ../../Zotlabs/Widget/Wiki_pages.php:58 ../../addon/gitwiki/gitwiki.php:82 msgid "Page name" msgstr "Nombre de la página" @@ -8245,7 +8387,7 @@ msgid "See more..." msgstr "Ver más..." #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:386 +#: ../../include/features.php:395 msgid "Saved Folders" msgstr "Carpetas guardadas" @@ -8265,7 +8407,7 @@ msgstr "Examinar la cola" msgid "DB updates" msgstr "Actualizaciones de la base de datos" -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:215 +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:224 msgid "Admin" msgstr "Administrador" @@ -8305,7 +8447,7 @@ msgstr "Exportar canal" msgid "Connected apps" msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:149 +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:158 msgid "Permission Groups" msgstr "Grupos de permisos" @@ -8317,151 +8459,289 @@ msgstr "Configuración del canal premium" msgid "Bookmarked Chatrooms" msgstr "Salas de chat preferidas" +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Nueva actividad en la red" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "Avisos de nueva actividad en la red" + +#: ../../Zotlabs/Widget/Notifications.php:20 ../../include/nav.php:99 +msgid "View your network activity" +msgstr "Ver su actividad en la red" + +#: ../../Zotlabs/Widget/Notifications.php:24 +msgid "Mark all notifications read" +msgstr "Marcar todas las notificaciones como leídas" + +#: ../../Zotlabs/Widget/Notifications.php:32 +msgid "New Home Activity" +msgstr "Nueva actividad en su página principal" + +#: ../../Zotlabs/Widget/Notifications.php:33 +msgid "New Home Activity Notifications" +msgstr "Avisos de nueva actividad en su página principal" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "View your home activity" +msgstr "Ver su actividad en su página principal" + +#: ../../Zotlabs/Widget/Notifications.php:40 +#: ../../Zotlabs/Widget/Notifications.php:136 +msgid "Mark all notifications seen" +msgstr "Marcar todas las notificaciones como vistas" + +#: ../../Zotlabs/Widget/Notifications.php:48 +msgid "New Mails" +msgstr "Nuevos mensajes de correo" + +#: ../../Zotlabs/Widget/Notifications.php:49 +msgid "New Mails Notifications" +msgstr "Avisos de nuevos mensajes de correo" + +#: ../../Zotlabs/Widget/Notifications.php:52 +msgid "View your private mails" +msgstr "Ver sus correos privados" + +#: ../../Zotlabs/Widget/Notifications.php:56 +msgid "Mark all messages seen" +msgstr "Marcar todos los mensajes como vistos" + +#: ../../Zotlabs/Widget/Notifications.php:64 +msgid "New Events" +msgstr "Eventos nuevos" + +#: ../../Zotlabs/Widget/Notifications.php:65 +msgid "New Events Notifications" +msgstr "Avisos de nuevos eventos" + +#: ../../Zotlabs/Widget/Notifications.php:68 ../../include/nav.php:125 +msgid "View events" +msgstr "Ver los eventos" + +#: ../../Zotlabs/Widget/Notifications.php:72 ../../include/nav.php:126 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" + +#: ../../Zotlabs/Widget/Notifications.php:81 +msgid "New Connections Notifications" +msgstr "Avisos de nuevas conexiones" + +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "View all connections" +msgstr "Ver todas las conexiones" + +#: ../../Zotlabs/Widget/Notifications.php:92 +msgid "New Files" +msgstr "Ficheros nuevos" + +#: ../../Zotlabs/Widget/Notifications.php:93 +msgid "New Files Notifications" +msgstr "Avisos de nuevos ficheros" + +#: ../../Zotlabs/Widget/Notifications.php:100 +#: ../../Zotlabs/Widget/Notifications.php:101 ../../include/nav.php:112 +msgid "Notices" +msgstr "Avisos" + +#: ../../Zotlabs/Widget/Notifications.php:104 +msgid "View all notices" +msgstr "Ver todos los avisos" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "Mark all notices seen" +msgstr "Marcar como leídos todos los avisos" + +#: ../../Zotlabs/Widget/Notifications.php:118 +msgid "New Registrations" +msgstr "Registros nuevos" + +#: ../../Zotlabs/Widget/Notifications.php:119 +msgid "New Registrations Notifications" +msgstr "Notificaciones de nuevos registros" + +#: ../../Zotlabs/Widget/Notifications.php:129 +msgid "Public Stream Notifications" +msgstr "Avisos del \"stream\" público" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "View the public stream" +msgstr "Ver el \"stream\" público" + +#: ../../Zotlabs/Widget/Notifications.php:143 +#: ../../include/conversation.php:871 ../../include/nav.php:305 +msgid "Loading..." +msgstr "Cargando..." + #: ../../util/nconfig.php:34 msgid "Source channel not found." msgstr "No se ha encontrado el canal de origen." -#: ../../boot.php:1581 +#: ../../boot.php:1619 msgid "Create an account to access services and applications" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" -#: ../../boot.php:1600 ../../include/nav.php:99 ../../include/nav.php:123 -#: ../../include/nav.php:140 +#: ../../boot.php:1638 ../../include/nav.php:138 ../../include/nav.php:167 +#: ../../include/nav.php:184 msgid "Logout" msgstr "Finalizar sesión" -#: ../../boot.php:1603 +#: ../../boot.php:1642 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1604 +#: ../../boot.php:1643 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1605 +#: ../../boot.php:1644 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1608 +#: ../../boot.php:1647 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2146 +#: ../../boot.php:2191 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2299 +#: ../../boot.php:2344 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Error SSL del sitio web en %s" -#: ../../boot.php:2304 +#: ../../boot.php:2349 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:2423 +#: ../../boot.php:2468 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" -#: ../../boot.php:2428 +#: ../../boot.php:2473 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2429 ../../include/datetime.php:286 +#: ../../boot.php:2474 ../../include/datetime.php:286 msgid "never" msgstr "nunca" +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 #: ../../view/theme/redbasic/php/config.php:16 #: ../../view/theme/redbasic/php/config.php:19 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinido)" -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:97 msgid "Theme settings" msgstr "Ajustes del tema" -#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:98 msgid "Narrow navbar" msgstr "Estrechar la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:99 msgid "Navigation bar background color" msgstr "Color de fondo de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:100 msgid "Navigation bar icon color " msgstr "Color del icono de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:101 msgid "Navigation bar active icon color " msgstr "Color del icono activo de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:102 msgid "Link color" msgstr "Color del enlace" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Set font-color for banner" msgstr "Ajustar el color del tipo de letra para el \"banner\"" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Set the background color" msgstr "Ajustar el color de fondo" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Set the background image" msgstr "Ajustar la imagen de fondo" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Set the background color of items" msgstr "Ajustar el color de los elementos de fondo" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Set the background color of comments" msgstr "Ajustar el color de fondo de los comentarios" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Set font-size for the entire application" msgstr "Ajustar el tamaño de letra para toda la aplicación" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Examples: 1rem, 100%, 16px" msgstr "Ejemplos: 1rem, 100%, 16px" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Set font-color for posts and comments" msgstr "Establecer el color de la letra para publicaciones y comentarios" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Set radius of corners" msgstr "Establecer el radio de curvatura de las esquinas" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Example: 4px" msgstr "Ejemplo: 4px" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Set shadow depth of photos" msgstr "Ajustar la profundidad de sombras de las fotos" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Set maximum width of content region in pixel" msgstr "Ajustar la anchura máxima de la región de contenido, en pixels" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Leave empty for default width" msgstr "Dejar en blanco para la anchura predeterminada" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic_c/php/config.php:115 msgid "Left align page content" msgstr "Alinear a la izquierda el contenido de la página" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Set size of conversation author photo" msgstr "Ajustar el tamaño de la foto del autor de la conversación" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" @@ -8603,30 +8883,30 @@ msgstr "Un ajuste" msgid "Skeleton Settings" msgstr "Ajustes de Skeleton" -#: ../../addon/gnusoc/gnusoc.php:200 +#: ../../addon/gnusoc/gnusoc.php:243 msgid "GNU-Social Protocol Settings updated." msgstr "Se han actualizado los ajustes del protocolo de GNU-Social." -#: ../../addon/gnusoc/gnusoc.php:219 +#: ../../addon/gnusoc/gnusoc.php:262 msgid "" "The GNU-Social protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo de GNU-Social no admite la independencia de la ubicación. Las\n conexiones que realice dentro de esa red pueden ser inaccesibles desde \nubicaciones de canales alternativos." -#: ../../addon/gnusoc/gnusoc.php:222 +#: ../../addon/gnusoc/gnusoc.php:265 msgid "Enable the GNU-Social protocol for this channel" msgstr "Activar el protocolo de GNU-Social para este canal" -#: ../../addon/gnusoc/gnusoc.php:226 +#: ../../addon/gnusoc/gnusoc.php:269 msgid "GNU-Social Protocol Settings" msgstr "Ajustes del protocolo de GNU-Social" -#: ../../addon/gnusoc/gnusoc.php:417 +#: ../../addon/gnusoc/gnusoc.php:460 msgid "Follow" msgstr "Seguir" -#: ../../addon/gnusoc/gnusoc.php:420 +#: ../../addon/gnusoc/gnusoc.php:463 #, php-format msgid "%1$s is now following %2$s" msgstr "%1$s está siguiendo ahora a %2$s" @@ -8672,8 +8952,8 @@ msgstr "Regresar después" msgid "Page to load after image selection." msgstr "Página para cargar después de la selección de imágenes." -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1165 -#: ../../include/nav.php:107 +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1266 +#: ../../include/nav.php:146 msgid "Edit Profile" msgstr "Editar el perfil" @@ -8746,6 +9026,10 @@ msgstr "Error desconocido. Por favor, inténtelo otra vez." msgid "Profile photo updated successfully." msgstr "Se ha actualizado con éxito la foto de perfil." +#: ../../addon/zotvi/zot6.php:25 ../../include/zot.php:3983 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" + #: ../../addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "Indicador (\"flag\") de fotos de adultos" @@ -9207,17 +9491,17 @@ msgstr "Fecha de nacimiento" msgid "OpenID protocol error. No ID returned." msgstr "Error de protocolo OpenID. No se recuperó ninguna ID." -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:286 +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:289 msgid "Login failed." msgstr "El acceso ha fallado." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1332 +#: ../../include/selectors.php:66 ../../include/channel.php:1432 msgid "Male" msgstr "Hombre" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1330 +#: ../../include/selectors.php:66 ../../include/channel.php:1430 msgid "Female" msgstr "Mujer" @@ -9404,39 +9688,39 @@ msgstr "una declaración de amor eterno" msgid "declared undying love for" msgstr "ha declarado amor eterno a" -#: ../../addon/diaspora/diaspora.php:715 +#: ../../addon/diaspora/diaspora.php:763 msgid "Diaspora Protocol Settings updated." msgstr "Los ajustes del protocolo de Diaspora se han actualizado." -#: ../../addon/diaspora/diaspora.php:734 +#: ../../addon/diaspora/diaspora.php:782 msgid "" "The Diaspora protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos." -#: ../../addon/diaspora/diaspora.php:737 +#: ../../addon/diaspora/diaspora.php:785 msgid "Enable the Diaspora protocol for this channel" msgstr "Activar el protocolo de Diaspora para este canal" -#: ../../addon/diaspora/diaspora.php:741 +#: ../../addon/diaspora/diaspora.php:789 msgid "Allow any Diaspora member to comment on your public posts" msgstr "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas" -#: ../../addon/diaspora/diaspora.php:745 +#: ../../addon/diaspora/diaspora.php:793 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " -#: ../../addon/diaspora/diaspora.php:749 +#: ../../addon/diaspora/diaspora.php:797 msgid "" "Sign and forward posts and comments with no existing Diaspora signature" msgstr "Firmar y enviar entradas y comentarios sin firma de Diaspora" -#: ../../addon/diaspora/diaspora.php:754 +#: ../../addon/diaspora/diaspora.php:802 msgid "Followed hashtags (comma separated, do not include the #)" msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" -#: ../../addon/diaspora/diaspora.php:759 +#: ../../addon/diaspora/diaspora.php:807 msgid "Diaspora Protocol Settings" msgstr "Ajustes del protocolo de Diaspora" @@ -9448,18 +9732,6 @@ msgstr "No se ha encontrado el nombre de usuario en el fichero de importación." msgid "Unable to create a unique channel address. Import failed." msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." -#: ../../addon/gitwiki/Mod_Gitwiki.php:107 -msgid "Error retrieving wiki" -msgstr "Error al recuperar el wiki" - -#: ../../addon/gitwiki/Mod_Gitwiki.php:114 -msgid "Error creating zip file export folder" -msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar" - -#: ../../addon/gitwiki/Mod_Gitwiki.php:132 -msgid "Error downloading wiki: " -msgstr "Error al descargar el wiki: " - #: ../../addon/testdrive/testdrive.php:104 #, php-format msgid "Your account on %s will expire in a few days." @@ -9497,16 +9769,76 @@ msgstr "PHP upload_max_filesize: " msgid "PHP post_max_size (must be larger than upload_max_filesize): " msgstr "PHP post_max_size (debe ser mayor que upload_max_filesize): " -#: ../../addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "Visitantes recientes del canal o perfil" +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "imagen del perfil general" -#: ../../addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." -msgstr "El plugin o complemento no se ha configurado." +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "patrón geométrico aleatorio" -#: ../../addon/visage/visage.php:99 -#, php-format +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "cara de monstruo" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "cara generada por ordenador" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "cara de estilo retro arcade" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "Foto del perfil por defecto del hub" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "Información" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "El addon Libravatar también está instalado. Por favor deshabilite el addon de Libravatar o este addon de Gravatar.
El addon de Libravatar volverá a Gravatar si no se encuentra nada en Libravatar." + +#: ../../addon/gravatar/gravatar.php:150 +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "Guardar ajustes" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "Imagen del avatar por defecto" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Selecciona la imagen de avatar predeterminada si no se encontró ninguna en Gravatar. Ver README" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "Valoración de las imágenes" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Seleccione la valoración adecuada del avatar para su sitio. Ver README" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "Se han actualizado los ajustes de Gravatar." + +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "Visitantes recientes del canal o perfil" + +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "El plugin o complemento no se ha configurado." + +#: ../../addon/visage/visage.php:99 +#, php-format msgid "Please visit the Visage settings on %s" msgstr "Por favor, revise los ajustes de Visage en %s" @@ -9603,10 +9935,6 @@ msgstr "Incluir un marcador en el mapa" msgid "Include a marker on the map." msgstr "Incluir un marcador en el mapa." -#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "Guardar ajustes" - #: ../../addon/msgfooter/msgfooter.php:47 msgid "text to include in all outgoing posts from this site" msgstr "texto a incluir en todos los mensajes salientes de este sitio" @@ -9647,8 +9975,8 @@ msgstr "Contraseña de Friendica" msgid "Hubzilla to Friendica Post Settings" msgstr "Ajustes de publicación de Hubzilla a Friendica" -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1256 -#: ../../include/channel.php:1419 +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1357 +#: ../../include/channel.php:1519 msgid "Status:" msgstr "Estado:" @@ -9813,6 +10141,30 @@ msgstr "Nombre de inicio de sesión en Friendica" msgid "Friendica Login Password" msgstr "Contraseña de inicio de sesión en Friendica" +#: ../../addon/pubcrawl/as.php:1076 ../../addon/pubcrawl/as.php:1160 +#: ../../addon/pubcrawl/as.php:1332 ../../include/network.php:1705 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: ../../addon/pubcrawl/pubcrawl.php:1032 +msgid "ActivityPub Protocol Settings updated." +msgstr "Se han actualizado los ajustes del protocolo ActivityPub." + +#: ../../addon/pubcrawl/pubcrawl.php:1041 +msgid "" +"The ActivityPub protocol does not support location independence. Connections" +" you make within that network may be unreachable from alternate channel " +"locations." +msgstr "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos." + +#: ../../addon/pubcrawl/pubcrawl.php:1044 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "Activar el protocolo ActivityPub para este canal" + +#: ../../addon/pubcrawl/pubcrawl.php:1049 +msgid "ActivityPub Protocol Settings" +msgstr "Ajustes del protocolo ActivityPub" + #: ../../addon/donate/donate.php:21 msgid "Project Servers and Resources" msgstr "Servidores y recursos del proyecto" @@ -10175,43 +10527,39 @@ msgstr "Generador QR" msgid "Enter some text" msgstr "Escribir algún texto" -#: ../../addon/chess/chess.php:276 ../../addon/chess/chess.php:433 +#: ../../addon/chess/chess.php:278 ../../addon/chess/chess.php:465 msgid "Invalid game." msgstr "Juego no válido." -#: ../../addon/chess/chess.php:282 ../../addon/chess/chess.php:439 +#: ../../addon/chess/chess.php:284 ../../addon/chess/chess.php:471 msgid "You are not a player in this game." msgstr "Usted no participa en este juego." -#: ../../addon/chess/chess.php:315 +#: ../../addon/chess/chess.php:340 msgid "You must be a local channel to create a game." msgstr "Debe ser un canal local para crear un juego" -#: ../../addon/chess/chess.php:333 +#: ../../addon/chess/chess.php:358 msgid "You must select one opponent that is not yourself." msgstr "Debe seleccionar un oponente que no sea usted mismo." -#: ../../addon/chess/chess.php:336 -msgid "Creating new game..." -msgstr "Crear un nuevo juego..." - -#: ../../addon/chess/chess.php:342 +#: ../../addon/chess/chess.php:367 msgid "You must select white or black." msgstr "Debe elegir blancas o negras." -#: ../../addon/chess/chess.php:349 +#: ../../addon/chess/chess.php:375 msgid "Error creating new game." msgstr "Error al crear un nuevo juego." -#: ../../addon/chess/chess.php:381 ../../include/channel.php:1016 +#: ../../addon/chess/chess.php:409 ../../include/channel.php:1117 msgid "Requested channel is not available." msgstr "El canal solicitado no está disponible." -#: ../../addon/chess/chess.php:395 +#: ../../addon/chess/chess.php:423 msgid "You must select a local channel /chess/channelname" msgstr "Debe seleccionar un canal local /chess/nombredelcanal" -#: ../../addon/chess/chess.php:923 +#: ../../addon/chess/chess.php:969 msgid "Enable notifications" msgstr "Habilitar notificaciones" @@ -10809,11 +11157,6 @@ msgstr "fichero" msgid "Send email to all members" msgstr "Enviar un correo electrónico a todos los miembros" -#: ../../addon/hubwall/hubwall.php:33 -#, php-format -msgid "$1%s Administrator" -msgstr "Administrador de $1%s " - #: ../../addon/hubwall/hubwall.php:73 #, php-format msgid "%1$d of %2$d messages sent." @@ -10887,11 +11230,11 @@ msgstr "Transexual" msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/selectors.php:49 ../../include/channel.php:1336 +#: ../../include/selectors.php:49 ../../include/channel.php:1436 msgid "Neuter" msgstr "Neutral" -#: ../../include/selectors.php:49 ../../include/channel.php:1338 +#: ../../include/selectors.php:49 ../../include/channel.php:1438 msgid "Non-specific" msgstr "No especificado" @@ -11081,282 +11424,274 @@ msgstr "%1$s ahora está conectado/a con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/conversation.php:239 ../../include/text.php:1096 -#: ../../include/text.php:1101 +#: ../../include/conversation.php:239 ../../include/text.php:1104 +#: ../../include/text.php:1109 msgid "poked" msgstr "ha dado un toque a" -#: ../../include/conversation.php:688 +#: ../../include/conversation.php:720 #, php-format msgid "View %s's profile @ %s" msgstr "Ver el perfil @ %s de %s" -#: ../../include/conversation.php:708 +#: ../../include/conversation.php:740 msgid "Categories:" msgstr "Temas:" -#: ../../include/conversation.php:709 +#: ../../include/conversation.php:741 msgid "Filed under:" msgstr "Archivado bajo:" -#: ../../include/conversation.php:734 +#: ../../include/conversation.php:766 msgid "View in context" msgstr "Mostrar en su contexto" -#: ../../include/conversation.php:831 +#: ../../include/conversation.php:867 msgid "remove" msgstr "eliminar" -#: ../../include/conversation.php:835 ../../include/nav.php:268 -msgid "Loading..." -msgstr "Cargando..." - -#: ../../include/conversation.php:836 +#: ../../include/conversation.php:872 msgid "Delete Selected Items" msgstr "Eliminar elementos seleccionados" -#: ../../include/conversation.php:879 +#: ../../include/conversation.php:915 msgid "View Source" msgstr "Ver el código fuente de la entrada" -#: ../../include/conversation.php:889 +#: ../../include/conversation.php:925 msgid "Follow Thread" msgstr "Seguir este hilo" -#: ../../include/conversation.php:898 +#: ../../include/conversation.php:934 msgid "Unfollow Thread" msgstr "Dejar de seguir este hilo" -#: ../../include/conversation.php:989 +#: ../../include/conversation.php:1025 msgid "Activity/Posts" msgstr "Actividad y publicaciones" -#: ../../include/conversation.php:1009 +#: ../../include/conversation.php:1045 msgid "Edit Connection" msgstr "Editar conexión" -#: ../../include/conversation.php:1019 +#: ../../include/conversation.php:1055 msgid "Message" msgstr "Mensaje" -#: ../../include/conversation.php:1153 +#: ../../include/conversation.php:1189 #, php-format msgid "%s likes this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1153 +#: ../../include/conversation.php:1189 #, php-format msgid "%s doesn't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1157 +#: ../../include/conversation.php:1193 #, 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:1159 +#: ../../include/conversation.php:1195 #, 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:1165 +#: ../../include/conversation.php:1201 msgid "and" msgstr "y" -#: ../../include/conversation.php:1168 +#: ../../include/conversation.php:1204 #, 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:1169 +#: ../../include/conversation.php:1205 #, php-format msgid "%s like this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1169 +#: ../../include/conversation.php:1205 #, php-format msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1212 +#: ../../include/conversation.php:1248 msgid "Set your location" msgstr "Establecer su ubicación" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1249 msgid "Clear browser location" msgstr "Eliminar los datos de localización geográfica del navegador" -#: ../../include/conversation.php:1261 +#: ../../include/conversation.php:1297 msgid "Tag term:" msgstr "Término de la etiqueta:" -#: ../../include/conversation.php:1262 +#: ../../include/conversation.php:1298 msgid "Where are you right now?" msgstr "¿Donde está ahora?" -#: ../../include/conversation.php:1267 +#: ../../include/conversation.php:1303 msgid "Choose a different album..." msgstr "Elegir un álbum diferente..." -#: ../../include/conversation.php:1271 +#: ../../include/conversation.php:1307 msgid "Comments enabled" msgstr "Comentarios habilitados" -#: ../../include/conversation.php:1272 +#: ../../include/conversation.php:1308 msgid "Comments disabled" msgstr "Comentarios deshabilitados" -#: ../../include/conversation.php:1310 +#: ../../include/conversation.php:1355 msgid "Page link name" msgstr "Nombre del enlace de la página" -#: ../../include/conversation.php:1313 +#: ../../include/conversation.php:1358 msgid "Post as" msgstr "Publicar como" -#: ../../include/conversation.php:1327 +#: ../../include/conversation.php:1372 msgid "Toggle voting" msgstr "Cambiar votación" -#: ../../include/conversation.php:1330 +#: ../../include/conversation.php:1375 msgid "Disable comments" msgstr "Dehabilitar los comentarios" -#: ../../include/conversation.php:1331 +#: ../../include/conversation.php:1376 msgid "Toggle comments" msgstr "Activar o desactivar los comentarios" -#: ../../include/conversation.php:1339 +#: ../../include/conversation.php:1384 msgid "Categories (optional, comma-separated list)" msgstr "Temas (opcional, lista separada por comas)" -#: ../../include/conversation.php:1362 +#: ../../include/conversation.php:1407 msgid "Other networks and post services" msgstr "Otras redes y servicios de publicación" -#: ../../include/conversation.php:1368 +#: ../../include/conversation.php:1413 msgid "Set publish date" msgstr "Establecer la fecha de publicación" -#: ../../include/conversation.php:1631 -msgid "Discover" -msgstr "Descubrir" - -#: ../../include/conversation.php:1634 -msgid "Imported public streams" -msgstr "Contenidos públicos importados" - -#: ../../include/conversation.php:1639 +#: ../../include/conversation.php:1673 msgid "Commented Order" msgstr "Comentarios recientes" -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1676 msgid "Sort by Comment Date" msgstr "Ordenar por fecha de comentario" -#: ../../include/conversation.php:1646 +#: ../../include/conversation.php:1680 msgid "Posted Order" msgstr "Publicaciones recientes" -#: ../../include/conversation.php:1649 +#: ../../include/conversation.php:1683 msgid "Sort by Post Date" msgstr "Ordenar por fecha de publicación" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1691 msgid "Posts that mention or involve you" msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/conversation.php:1666 +#: ../../include/conversation.php:1700 msgid "Activity Stream - by date" msgstr "Contenido - por fecha" -#: ../../include/conversation.php:1672 +#: ../../include/conversation.php:1706 msgid "Starred" msgstr "Preferidas" -#: ../../include/conversation.php:1675 +#: ../../include/conversation.php:1709 msgid "Favourite Posts" msgstr "Publicaciones favoritas" -#: ../../include/conversation.php:1682 +#: ../../include/conversation.php:1716 msgid "Spam" msgstr "Correo basura" -#: ../../include/conversation.php:1685 +#: ../../include/conversation.php:1719 msgid "Posts flagged as SPAM" msgstr "Publicaciones marcadas como basura" -#: ../../include/conversation.php:1760 ../../include/nav.php:358 +#: ../../include/conversation.php:1794 ../../include/nav.php:402 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/conversation.php:1773 ../../include/nav.php:371 +#: ../../include/conversation.php:1807 ../../include/nav.php:415 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/conversation.php:1783 ../../include/nav.php:381 -#: ../../include/photos.php:525 +#: ../../include/conversation.php:1817 ../../include/nav.php:425 +#: ../../include/photos.php:600 msgid "Photo Albums" msgstr "Álbumes de fotos" -#: ../../include/conversation.php:1791 ../../include/nav.php:389 +#: ../../include/conversation.php:1825 ../../include/nav.php:433 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/conversation.php:1827 ../../include/nav.php:424 +#: ../../include/conversation.php:1862 ../../include/nav.php:468 msgid "Bookmarks" msgstr "Marcadores" -#: ../../include/conversation.php:1830 ../../include/nav.php:427 +#: ../../include/conversation.php:1865 ../../include/nav.php:471 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/conversation.php:1841 ../../include/nav.php:438 +#: ../../include/conversation.php:1876 ../../include/nav.php:482 +msgid "View Cards" +msgstr "Ver las fichas" + +#: ../../include/conversation.php:1887 ../../include/nav.php:494 msgid "View Webpages" msgstr "Ver páginas web" -#: ../../include/conversation.php:1910 +#: ../../include/conversation.php:1956 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1913 +#: ../../include/conversation.php:1959 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1916 +#: ../../include/conversation.php:1962 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1919 +#: ../../include/conversation.php:1965 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1922 +#: ../../include/conversation.php:1968 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:1925 +#: ../../include/conversation.php:1971 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -11417,328 +11752,340 @@ msgstr "más antiguas" msgid "newer" msgstr "más recientes" -#: ../../include/text.php:939 +#: ../../include/text.php:947 msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:964 +#: ../../include/text.php:972 #, php-format msgid "View all %s connections" msgstr "Ver todas las %s conexiones" -#: ../../include/text.php:1096 ../../include/text.php:1101 +#: ../../include/text.php:1104 ../../include/text.php:1109 msgid "poke" msgstr "un toque" -#: ../../include/text.php:1102 +#: ../../include/text.php:1110 msgid "ping" msgstr "un \"ping\"" -#: ../../include/text.php:1102 +#: ../../include/text.php:1110 msgid "pinged" msgstr "ha enviado un \"ping\" a" -#: ../../include/text.php:1103 +#: ../../include/text.php:1111 msgid "prod" msgstr "una incitación " -#: ../../include/text.php:1103 +#: ../../include/text.php:1111 msgid "prodded" msgstr "ha incitado a " -#: ../../include/text.php:1104 +#: ../../include/text.php:1112 msgid "slap" msgstr "una bofetada " -#: ../../include/text.php:1104 +#: ../../include/text.php:1112 msgid "slapped" msgstr "ha abofeteado a " -#: ../../include/text.php:1105 +#: ../../include/text.php:1113 msgid "finger" msgstr "un \"finger\" " -#: ../../include/text.php:1105 +#: ../../include/text.php:1113 msgid "fingered" msgstr "envió un \"finger\" a" -#: ../../include/text.php:1106 +#: ../../include/text.php:1114 msgid "rebuff" msgstr "un reproche" -#: ../../include/text.php:1106 +#: ../../include/text.php:1114 msgid "rebuffed" msgstr "ha hecho un reproche a " -#: ../../include/text.php:1118 +#: ../../include/text.php:1126 msgid "happy" msgstr "feliz " -#: ../../include/text.php:1119 +#: ../../include/text.php:1127 msgid "sad" msgstr "triste " -#: ../../include/text.php:1120 +#: ../../include/text.php:1128 msgid "mellow" msgstr "tranquilo/a" -#: ../../include/text.php:1121 +#: ../../include/text.php:1129 msgid "tired" msgstr "cansado/a " -#: ../../include/text.php:1122 +#: ../../include/text.php:1130 msgid "perky" msgstr "vivaz" -#: ../../include/text.php:1123 +#: ../../include/text.php:1131 msgid "angry" msgstr "enfadado/a" -#: ../../include/text.php:1124 +#: ../../include/text.php:1132 msgid "stupefied" msgstr "asombrado/a" -#: ../../include/text.php:1125 +#: ../../include/text.php:1133 msgid "puzzled" msgstr "perplejo/a" -#: ../../include/text.php:1126 +#: ../../include/text.php:1134 msgid "interested" msgstr "interesado/a" -#: ../../include/text.php:1127 +#: ../../include/text.php:1135 msgid "bitter" msgstr "amargado/a" -#: ../../include/text.php:1128 +#: ../../include/text.php:1136 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:1129 +#: ../../include/text.php:1137 msgid "alive" msgstr "animado/a" -#: ../../include/text.php:1130 +#: ../../include/text.php:1138 msgid "annoyed" msgstr "molesto/a" -#: ../../include/text.php:1131 +#: ../../include/text.php:1139 msgid "anxious" msgstr "ansioso/a" -#: ../../include/text.php:1132 +#: ../../include/text.php:1140 msgid "cranky" msgstr "de mal humor" -#: ../../include/text.php:1133 +#: ../../include/text.php:1141 msgid "disturbed" msgstr "perturbado/a" -#: ../../include/text.php:1134 +#: ../../include/text.php:1142 msgid "frustrated" msgstr "frustrado/a" -#: ../../include/text.php:1135 +#: ../../include/text.php:1143 msgid "depressed" msgstr "deprimido/a" -#: ../../include/text.php:1136 +#: ../../include/text.php:1144 msgid "motivated" msgstr "motivado/a" -#: ../../include/text.php:1137 +#: ../../include/text.php:1145 msgid "relaxed" msgstr "relajado/a" -#: ../../include/text.php:1138 +#: ../../include/text.php:1146 msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1312 ../../include/js_strings.php:70 +#: ../../include/text.php:1320 ../../include/js_strings.php:70 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1312 ../../include/js_strings.php:71 +#: ../../include/text.php:1320 ../../include/js_strings.php:71 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1312 ../../include/js_strings.php:72 +#: ../../include/text.php:1320 ../../include/js_strings.php:72 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1312 ../../include/js_strings.php:73 +#: ../../include/text.php:1320 ../../include/js_strings.php:73 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1312 ../../include/js_strings.php:74 +#: ../../include/text.php:1320 ../../include/js_strings.php:74 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1312 ../../include/js_strings.php:75 +#: ../../include/text.php:1320 ../../include/js_strings.php:75 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1312 ../../include/js_strings.php:69 +#: ../../include/text.php:1320 ../../include/js_strings.php:69 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1316 ../../include/js_strings.php:45 +#: ../../include/text.php:1324 ../../include/js_strings.php:45 msgid "January" msgstr "enero" -#: ../../include/text.php:1316 ../../include/js_strings.php:46 +#: ../../include/text.php:1324 ../../include/js_strings.php:46 msgid "February" msgstr "febrero" -#: ../../include/text.php:1316 ../../include/js_strings.php:47 +#: ../../include/text.php:1324 ../../include/js_strings.php:47 msgid "March" msgstr "marzo" -#: ../../include/text.php:1316 ../../include/js_strings.php:48 +#: ../../include/text.php:1324 ../../include/js_strings.php:48 msgid "April" msgstr "abril" -#: ../../include/text.php:1316 +#: ../../include/text.php:1324 msgid "May" msgstr "mayo" -#: ../../include/text.php:1316 ../../include/js_strings.php:50 +#: ../../include/text.php:1324 ../../include/js_strings.php:50 msgid "June" msgstr "junio" -#: ../../include/text.php:1316 ../../include/js_strings.php:51 +#: ../../include/text.php:1324 ../../include/js_strings.php:51 msgid "July" msgstr "julio" -#: ../../include/text.php:1316 ../../include/js_strings.php:52 +#: ../../include/text.php:1324 ../../include/js_strings.php:52 msgid "August" msgstr "agosto" -#: ../../include/text.php:1316 ../../include/js_strings.php:53 +#: ../../include/text.php:1324 ../../include/js_strings.php:53 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1316 ../../include/js_strings.php:54 +#: ../../include/text.php:1324 ../../include/js_strings.php:54 msgid "October" msgstr "octubre" -#: ../../include/text.php:1316 ../../include/js_strings.php:55 +#: ../../include/text.php:1324 ../../include/js_strings.php:55 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1316 ../../include/js_strings.php:56 +#: ../../include/text.php:1324 ../../include/js_strings.php:56 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1380 ../../include/text.php:1384 +#: ../../include/text.php:1388 ../../include/text.php:1392 msgid "Unknown Attachment" msgstr "Adjunto no reconocido" -#: ../../include/text.php:1386 ../../include/feedutils.php:780 +#: ../../include/text.php:1394 ../../include/feedutils.php:780 msgid "unknown" msgstr "desconocido" -#: ../../include/text.php:1422 +#: ../../include/text.php:1430 msgid "remove category" msgstr "eliminar el tema" -#: ../../include/text.php:1496 +#: ../../include/text.php:1504 msgid "remove from file" msgstr "eliminar del fichero" -#: ../../include/text.php:1615 ../../include/message.php:12 +#: ../../include/text.php:1623 ../../include/message.php:12 msgid "Download binary/encrypted content" msgstr "Descargar contenido binario o cifrado" -#: ../../include/text.php:1774 ../../include/language.php:367 +#: ../../include/text.php:1782 ../../include/language.php:367 msgid "default" msgstr "por defecto" -#: ../../include/text.php:1782 +#: ../../include/text.php:1790 msgid "Page layout" msgstr "Plantilla de la página" -#: ../../include/text.php:1782 +#: ../../include/text.php:1790 msgid "You can create your own with the layouts tool" msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" -#: ../../include/text.php:1810 +#: ../../include/text.php:1801 +msgid "HTML" +msgstr "HTML" + +#: ../../include/text.php:1804 +msgid "Comanche Layout" +msgstr "Plantilla de Comanche" + +#: ../../include/text.php:1809 +msgid "PHP" +msgstr "PHP" + +#: ../../include/text.php:1818 msgid "Page content type" msgstr "Tipo de contenido de la página" -#: ../../include/text.php:1943 +#: ../../include/text.php:1951 msgid "activity" msgstr "la actividad" -#: ../../include/text.php:2006 -msgid "a-z, 0-9, -, _, and . only" -msgstr "a-z, 0-9, -, _, and . only" +#: ../../include/text.php:2014 +msgid "a-z, 0-9, -, and _ only" +msgstr "a-z, 0-9, -, and _ only" -#: ../../include/text.php:2277 +#: ../../include/text.php:2285 msgid "Design Tools" msgstr "Herramientas de diseño web" -#: ../../include/text.php:2283 +#: ../../include/text.php:2291 msgid "Pages" msgstr "Páginas" -#: ../../include/text.php:2305 +#: ../../include/text.php:2313 msgid "Import website..." msgstr "Importar un sitio web..." -#: ../../include/text.php:2306 +#: ../../include/text.php:2314 msgid "Select folder to import" msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/text.php:2307 +#: ../../include/text.php:2315 msgid "Import from a zipped folder:" msgstr "Importar desde una carpeta comprimida: " -#: ../../include/text.php:2308 +#: ../../include/text.php:2316 msgid "Import from cloud files:" msgstr "Importar desde los ficheros en la nube: " -#: ../../include/text.php:2309 +#: ../../include/text.php:2317 msgid "/cloud/channel/path/to/folder" msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/text.php:2310 +#: ../../include/text.php:2318 msgid "Enter path to website files" msgstr "Ruta a los ficheros del sitio web" -#: ../../include/text.php:2311 +#: ../../include/text.php:2319 msgid "Select folder" msgstr "Seleccionar la carpeta" -#: ../../include/text.php:2312 +#: ../../include/text.php:2320 msgid "Export website..." msgstr "Exportar un sitio web..." -#: ../../include/text.php:2313 +#: ../../include/text.php:2321 msgid "Export to a zip file" msgstr "Exportar a un fichero comprimido .zip" -#: ../../include/text.php:2314 +#: ../../include/text.php:2322 msgid "website.zip" msgstr "sitio_web.zip" -#: ../../include/text.php:2315 +#: ../../include/text.php:2323 msgid "Enter a name for the zip file." msgstr "Escriba un nombre para el fichero zip." -#: ../../include/text.php:2316 +#: ../../include/text.php:2324 msgid "Export to cloud files" msgstr "Exportar a la nube de ficheros" -#: ../../include/text.php:2317 +#: ../../include/text.php:2325 msgid "/path/to/export/folder" msgstr "/ruta/para/exportar/carpeta" -#: ../../include/text.php:2318 +#: ../../include/text.php:2326 msgid "Enter a path to a cloud files destination." msgstr "Escriba una ruta de destino a la nube de ficheros." -#: ../../include/text.php:2319 +#: ../../include/text.php:2327 msgid "Specify folder" msgstr "Especificar una carpeta" @@ -11777,47 +12124,49 @@ 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:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d conexión en común" -msgstr[1] "%d conexiones en común" +#: ../../include/contact_widgets.php:166 +msgid "Common Connections" +msgstr "Conexiones comunes" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar más" +#: ../../include/contact_widgets.php:171 +#, php-format +msgid "View all %d common connections" +msgstr "Ver todas las %d conexiones comunes" -#: ../../include/markdown.php:139 ../../include/bbcode.php:332 +#: ../../include/markdown.php:139 ../../include/bbcode.php:337 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escribió %2$s siguiente %3$s" -#: ../../include/follow.php:26 +#: ../../include/follow.php:37 msgid "Channel is blocked on this site." msgstr "El canal está bloqueado en este sitio." -#: ../../include/follow.php:31 +#: ../../include/follow.php:42 msgid "Channel location missing." msgstr "Falta la dirección del canal." -#: ../../include/follow.php:73 +#: ../../include/follow.php:84 msgid "Response from remote channel was incomplete." msgstr "Respuesta incompleta del canal." -#: ../../include/follow.php:90 +#: ../../include/follow.php:101 msgid "Channel was deleted and no longer exists." msgstr "El canal ha sido eliminado y ya no existe." -#: ../../include/follow.php:140 ../../include/follow.php:175 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." +#: ../../include/follow.php:156 +msgid "Remote channel or protocol unavailable." +msgstr "Canal remoto o protocolo no disponible." -#: ../../include/follow.php:163 +#: ../../include/follow.php:179 msgid "Channel discovery failed." msgstr "El intento de acceder al canal ha fallado." -#: ../../include/follow.php:186 +#: ../../include/follow.php:191 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." + +#: ../../include/follow.php:202 msgid "Cannot connect to yourself." msgstr "No puede conectarse consigo mismo." @@ -12111,302 +12460,284 @@ msgstr "%1$s ha actualizado %2$s, cambiando %3$s." msgid "Item was not found." msgstr "Elemento no encontrado." -#: ../../include/attach.php:501 +#: ../../include/attach.php:505 msgid "No source file." msgstr "Ningún fichero de origen" -#: ../../include/attach.php:523 +#: ../../include/attach.php:527 msgid "Cannot locate file to replace" msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../include/attach.php:541 +#: ../../include/attach.php:545 msgid "Cannot locate file to revise/update" msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../include/attach.php:674 +#: ../../include/attach.php:680 #, php-format msgid "File exceeds size limit of %d" msgstr "El fichero supera el limite de tamaño de %d" -#: ../../include/attach.php:688 +#: ../../include/attach.php:694 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." -#: ../../include/attach.php:858 +#: ../../include/attach.php:864 msgid "File upload failed. Possible system limit or action terminated." msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." -#: ../../include/attach.php:871 +#: ../../include/attach.php:877 msgid "Stored file could not be verified. Upload failed." msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." -#: ../../include/attach.php:932 ../../include/attach.php:948 +#: ../../include/attach.php:938 ../../include/attach.php:954 msgid "Path not available." msgstr "Ruta no disponible." -#: ../../include/attach.php:997 ../../include/attach.php:1162 +#: ../../include/attach.php:1003 ../../include/attach.php:1168 msgid "Empty pathname" msgstr "Ruta vacía" -#: ../../include/attach.php:1023 +#: ../../include/attach.php:1029 msgid "duplicate filename or path" msgstr "Nombre duplicado de ruta o fichero" -#: ../../include/attach.php:1048 +#: ../../include/attach.php:1054 msgid "Path not found." msgstr "Ruta no encontrada" -#: ../../include/attach.php:1116 +#: ../../include/attach.php:1122 msgid "mkdir failed." msgstr "mkdir ha fallado." -#: ../../include/attach.php:1120 +#: ../../include/attach.php:1126 msgid "database storage failed." msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../include/attach.php:1168 +#: ../../include/attach.php:1174 msgid "Empty path" msgstr "Ruta vacía" -#: ../../include/security.php:117 -msgid "guest:" -msgstr "invitado: " - #: ../../include/security.php:531 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/items.php:851 ../../include/items.php:903 +#: ../../include/items.php:857 ../../include/items.php:909 msgid "(Unknown)" msgstr "(Desconocido)" -#: ../../include/items.php:1087 +#: ../../include/items.php:1093 msgid "Visible to anybody on the internet." msgstr "Visible para cualquiera en internet." -#: ../../include/items.php:1089 +#: ../../include/items.php:1095 msgid "Visible to you only." msgstr "Visible sólo para usted." -#: ../../include/items.php:1091 +#: ../../include/items.php:1097 msgid "Visible to anybody in this network." msgstr "Visible para cualquiera en esta red." -#: ../../include/items.php:1093 +#: ../../include/items.php:1099 msgid "Visible to anybody authenticated." msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/items.php:1095 +#: ../../include/items.php:1101 #, php-format msgid "Visible to anybody on %s." msgstr "Visible para cualquiera en %s." -#: ../../include/items.php:1097 +#: ../../include/items.php:1103 msgid "Visible to all connections." msgstr "Visible para todas las conexiones." -#: ../../include/items.php:1099 +#: ../../include/items.php:1105 msgid "Visible to approved connections." msgstr "Visible para las conexiones permitidas." -#: ../../include/items.php:1101 +#: ../../include/items.php:1107 msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:3908 +#: ../../include/items.php:3957 msgid "Privacy group is empty." msgstr "El grupo de canales está vacío." -#: ../../include/items.php:3915 +#: ../../include/items.php:3964 #, php-format msgid "Privacy group: %s" msgstr "Grupo de canales: %s" -#: ../../include/items.php:3927 +#: ../../include/items.php:3976 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/items.php:4280 +#: ../../include/items.php:4327 msgid "profile photo" msgstr "foto del perfil" -#: ../../include/items.php:4473 +#: ../../include/items.php:4520 #, php-format msgid "[Edited %s]" msgstr "[se ha editado %s]" -#: ../../include/items.php:4473 +#: ../../include/items.php:4520 msgctxt "edit_activity" msgid "Post" msgstr "Publicar" -#: ../../include/items.php:4473 +#: ../../include/items.php:4520 msgctxt "edit_activity" msgid "Comment" msgstr "Comentar" -#: ../../include/channel.php:33 +#: ../../include/channel.php:34 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/channel.php:68 +#: ../../include/channel.php:69 msgid "Empty name" msgstr "Nombre vacío" -#: ../../include/channel.php:71 +#: ../../include/channel.php:72 msgid "Name too long" msgstr "Nombre demasiado largo" -#: ../../include/channel.php:182 +#: ../../include/channel.php:183 msgid "No account identifier" msgstr "Ningún identificador de la cuenta" -#: ../../include/channel.php:194 +#: ../../include/channel.php:195 msgid "Nickname is required." msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/channel.php:208 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." - -#: ../../include/channel.php:213 -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 miembros de este sitio." - -#: ../../include/channel.php:272 +#: ../../include/channel.php:273 msgid "Unable to retrieve created identity" msgstr "No ha sido posible recuperar la identidad creada" -#: ../../include/channel.php:344 +#: ../../include/channel.php:359 msgid "Default Profile" msgstr "Perfil principal" -#: ../../include/channel.php:497 +#: ../../include/channel.php:512 ../../include/channel.php:601 msgid "Unable to retrieve modified identity" msgstr "No se puede recuperar la identidad modficada" -#: ../../include/channel.php:1162 +#: ../../include/channel.php:1263 msgid "Create New Profile" msgstr "Crear un nuevo perfil" -#: ../../include/channel.php:1182 +#: ../../include/channel.php:1283 msgid "Visible to everybody" msgstr "Visible para todos" -#: ../../include/channel.php:1255 ../../include/channel.php:1375 +#: ../../include/channel.php:1356 ../../include/channel.php:1475 msgid "Gender:" msgstr "Género:" -#: ../../include/channel.php:1257 ../../include/channel.php:1430 +#: ../../include/channel.php:1358 ../../include/channel.php:1530 msgid "Homepage:" msgstr "Página personal:" -#: ../../include/channel.php:1258 +#: ../../include/channel.php:1359 msgid "Online Now" msgstr "Ahora en línea" -#: ../../include/channel.php:1334 +#: ../../include/channel.php:1434 msgid "Trans" msgstr "Trans" -#: ../../include/channel.php:1380 +#: ../../include/channel.php:1480 msgid "Like this channel" msgstr "Me gusta este canal" -#: ../../include/channel.php:1404 +#: ../../include/channel.php:1504 msgid "j F, Y" msgstr "j F Y" -#: ../../include/channel.php:1405 +#: ../../include/channel.php:1505 msgid "j F" msgstr "j F" -#: ../../include/channel.php:1412 +#: ../../include/channel.php:1512 msgid "Birthday:" msgstr "Cumpleaños:" -#: ../../include/channel.php:1425 +#: ../../include/channel.php:1525 #, php-format msgid "for %1$d %2$s" msgstr "por %1$d %2$s" -#: ../../include/channel.php:1428 +#: ../../include/channel.php:1528 msgid "Sexual Preference:" msgstr "Orientación sexual:" -#: ../../include/channel.php:1434 +#: ../../include/channel.php:1534 msgid "Tags:" msgstr "Etiquetas:" -#: ../../include/channel.php:1436 +#: ../../include/channel.php:1536 msgid "Political Views:" msgstr "Posición política:" -#: ../../include/channel.php:1438 +#: ../../include/channel.php:1538 msgid "Religion:" msgstr "Religión:" -#: ../../include/channel.php:1442 +#: ../../include/channel.php:1542 msgid "Hobbies/Interests:" msgstr "Aficciones o intereses:" -#: ../../include/channel.php:1444 +#: ../../include/channel.php:1544 msgid "Likes:" msgstr "Me gusta:" -#: ../../include/channel.php:1446 +#: ../../include/channel.php:1546 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../include/channel.php:1448 +#: ../../include/channel.php:1548 msgid "Contact information and Social Networks:" msgstr "Información de contacto y redes sociales:" -#: ../../include/channel.php:1450 +#: ../../include/channel.php:1550 msgid "My other channels:" msgstr "Mis otros canales:" -#: ../../include/channel.php:1452 +#: ../../include/channel.php:1552 msgid "Musical interests:" msgstr "Preferencias musicales:" -#: ../../include/channel.php:1454 +#: ../../include/channel.php:1554 msgid "Books, literature:" msgstr "Libros, literatura:" -#: ../../include/channel.php:1456 +#: ../../include/channel.php:1556 msgid "Television:" msgstr "Televisión:" -#: ../../include/channel.php:1458 +#: ../../include/channel.php:1558 msgid "Film/dance/culture/entertainment:" msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/channel.php:1460 +#: ../../include/channel.php:1560 msgid "Love/Romance:" msgstr "Vida sentimental o amorosa:" -#: ../../include/channel.php:1462 +#: ../../include/channel.php:1562 msgid "Work/employment:" msgstr "Trabajo:" -#: ../../include/channel.php:1464 +#: ../../include/channel.php:1564 msgid "School/education:" msgstr "Estudios:" -#: ../../include/channel.php:1487 +#: ../../include/channel.php:1587 msgid "Like this thing" msgstr "Me gusta esto" -#: ../../include/channel.php:2256 -#, php-format -msgid "User '%s' deleted" -msgstr "El usuario '%s' ha sido eliminado" - #: ../../include/event.php:22 ../../include/event.php:69 msgid "l F d, Y \\@ g:i A" msgstr "l d de F, Y \\@ G:i" @@ -12443,67 +12774,63 @@ msgstr "En proceso" msgid "Cancelled" msgstr "Cancelado/a" -#: ../../include/event.php:1292 ../../include/connections.php:676 +#: ../../include/event.php:1292 ../../include/connections.php:684 msgid "Home, Voice" msgstr "Llamadas particulares" -#: ../../include/event.php:1293 ../../include/connections.php:677 +#: ../../include/event.php:1293 ../../include/connections.php:685 msgid "Home, Fax" msgstr "Fax particular" -#: ../../include/event.php:1295 ../../include/connections.php:679 +#: ../../include/event.php:1295 ../../include/connections.php:687 msgid "Work, Voice" msgstr "Llamadas de trabajo" -#: ../../include/event.php:1296 ../../include/connections.php:680 +#: ../../include/event.php:1296 ../../include/connections.php:688 msgid "Work, Fax" msgstr "Fax de trabajo" -#: ../../include/network.php:751 +#: ../../include/network.php:752 msgid "view full size" msgstr "Ver en el tamaño original" -#: ../../include/network.php:1691 ../../include/network.php:1692 +#: ../../include/network.php:1700 ../../include/network.php:1701 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1693 +#: ../../include/network.php:1702 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1694 +#: ../../include/network.php:1703 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:1695 +#: ../../include/network.php:1704 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1696 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: ../../include/network.php:1698 +#: ../../include/network.php:1707 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1699 +#: ../../include/network.php:1708 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1700 +#: ../../include/network.php:1709 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:1701 +#: ../../include/network.php:1710 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1702 +#: ../../include/network.php:1711 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1703 +#: ../../include/network.php:1712 msgid "MySpace" msgstr "MySpace" @@ -12545,17 +12872,17 @@ msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha msgid "Cannot locate DNS info for database server '%s'" msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" -#: ../../include/bbcode.php:194 ../../include/bbcode.php:1097 -#: ../../include/bbcode.php:1100 ../../include/bbcode.php:1105 -#: ../../include/bbcode.php:1108 ../../include/bbcode.php:1111 -#: ../../include/bbcode.php:1114 ../../include/bbcode.php:1119 -#: ../../include/bbcode.php:1122 ../../include/bbcode.php:1127 -#: ../../include/bbcode.php:1130 ../../include/bbcode.php:1133 -#: ../../include/bbcode.php:1136 +#: ../../include/bbcode.php:194 ../../include/bbcode.php:1102 +#: ../../include/bbcode.php:1105 ../../include/bbcode.php:1110 +#: ../../include/bbcode.php:1113 ../../include/bbcode.php:1116 +#: ../../include/bbcode.php:1119 ../../include/bbcode.php:1124 +#: ../../include/bbcode.php:1127 ../../include/bbcode.php:1132 +#: ../../include/bbcode.php:1135 ../../include/bbcode.php:1138 +#: ../../include/bbcode.php:1141 msgid "Image/photo" msgstr "Imagen/foto" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:1147 +#: ../../include/bbcode.php:233 ../../include/bbcode.php:1152 msgid "Encrypted content" msgstr "Contenido cifrado" @@ -12571,34 +12898,43 @@ msgid "" "to install it on this site." msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." -#: ../../include/bbcode.php:409 ../../include/bbcode.php:417 +#: ../../include/bbcode.php:331 +msgid "card" +msgstr "ficha" + +#: ../../include/bbcode.php:414 ../../include/bbcode.php:422 msgid "Click to open/close" msgstr "Pulsar para abrir/cerrar" -#: ../../include/bbcode.php:417 +#: ../../include/bbcode.php:422 msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:1085 +#: ../../include/bbcode.php:1090 msgid "$1 wrote:" msgstr "$1 escribió:" -#: ../../include/oembed.php:317 +#: ../../include/oembed.php:328 msgid " by " msgstr "por" -#: ../../include/oembed.php:318 +#: ../../include/oembed.php:329 msgid " on " msgstr "en" -#: ../../include/oembed.php:347 +#: ../../include/oembed.php:358 msgid "Embedded content" msgstr "Contenido incorporado" -#: ../../include/oembed.php:356 +#: ../../include/oembed.php:367 msgid "Embedding disabled" msgstr "Incrustación deshabilitada" +#: ../../include/zid.php:305 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$sda la bienvenida a %2$s" + #: ../../include/features.php:54 msgid "General Features" msgstr "Funcionalidades básicas" @@ -12647,292 +12983,296 @@ msgstr "Notas privadas" msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" -#: ../../include/features.php:122 +#: ../../include/features.php:123 +msgid "Create personal planning cards" +msgstr "Crear fichas de planificación personal" + +#: ../../include/features.php:131 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:123 +#: ../../include/features.php:132 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/features.php:131 +#: ../../include/features.php:140 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:132 +#: ../../include/features.php:141 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/features.php:140 +#: ../../include/features.php:149 msgid "Access Controlled Chatrooms" msgstr "Salas de chat moderadas" -#: ../../include/features.php:141 +#: ../../include/features.php:150 msgid "Provide chatrooms and chat services with access control." msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../include/features.php:150 +#: ../../include/features.php:159 msgid "Provide alternate connection permission roles." msgstr "Proporcionar roles de acceso alternativos para esta conexión." -#: ../../include/features.php:158 +#: ../../include/features.php:167 msgid "Smart Birthdays" msgstr "Cumpleaños inteligentes" -#: ../../include/features.php:159 +#: ../../include/features.php:168 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../include/features.php:167 +#: ../../include/features.php:176 msgid "Event Timezone Selection" msgstr "Selección del huso horario del evento" -#: ../../include/features.php:168 +#: ../../include/features.php:177 msgid "Allow event creation in timezones other than your own." msgstr "Permitir la creación de eventos en husos horarios distintos del suyo." -#: ../../include/features.php:176 +#: ../../include/features.php:185 msgid "Advanced Directory Search" msgstr "Búsqueda avanzada en el directorio" -#: ../../include/features.php:177 +#: ../../include/features.php:186 msgid "Allows creation of complex directory search queries" msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" -#: ../../include/features.php:185 +#: ../../include/features.php:194 msgid "Advanced Theme and Layout Settings" msgstr "Ajustes avanzados de temas y esquemas" -#: ../../include/features.php:186 +#: ../../include/features.php:195 msgid "Allows fine tuning of themes and page layouts" msgstr "Permitir el ajuste fino de temas y esquemas de páginas" -#: ../../include/features.php:196 +#: ../../include/features.php:205 msgid "Post Composition Features" msgstr "Opciones para la redacción de entradas" -#: ../../include/features.php:200 +#: ../../include/features.php:209 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:201 +#: ../../include/features.php:210 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/features.php:210 +#: ../../include/features.php:219 msgid "Automatically import channel content from other channels or feeds" msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/features.php:218 +#: ../../include/features.php:227 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:219 +#: ../../include/features.php:228 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/features.php:227 +#: ../../include/features.php:236 msgid "Enable Voting Tools" msgstr "Permitir entradas con votación" -#: ../../include/features.php:228 +#: ../../include/features.php:237 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/features.php:236 +#: ../../include/features.php:245 msgid "Disable Comments" msgstr "Deshabilitar comentarios" -#: ../../include/features.php:237 +#: ../../include/features.php:246 msgid "Provide the option to disable comments for a post" msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" -#: ../../include/features.php:245 +#: ../../include/features.php:254 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:246 +#: ../../include/features.php:255 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:254 +#: ../../include/features.php:263 msgid "Content Expiration" msgstr "Caducidad del contenido" -#: ../../include/features.php:255 +#: ../../include/features.php:264 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" -#: ../../include/features.php:263 +#: ../../include/features.php:272 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:264 +#: ../../include/features.php:273 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/features.php:275 +#: ../../include/features.php:284 msgid "Network and Stream Filtering" msgstr "Filtrado del contenido" -#: ../../include/features.php:279 +#: ../../include/features.php:288 msgid "Search by Date" msgstr "Buscar por fecha" -#: ../../include/features.php:280 +#: ../../include/features.php:289 msgid "Ability to select posts by date ranges" msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/features.php:288 ../../include/group.php:332 +#: ../../include/features.php:297 ../../include/group.php:332 msgid "Privacy Groups" msgstr "Grupos de canales" -#: ../../include/features.php:289 +#: ../../include/features.php:298 msgid "Enable management and selection of privacy groups" msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/features.php:298 +#: ../../include/features.php:307 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:306 +#: ../../include/features.php:315 msgid "Network Personal Tab" msgstr "Actividad personal" -#: ../../include/features.php:307 +#: ../../include/features.php:316 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/features.php:315 +#: ../../include/features.php:324 msgid "Network New Tab" msgstr "Contenido nuevo" -#: ../../include/features.php:316 +#: ../../include/features.php:325 msgid "Enable tab to display all new Network activity" msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/features.php:324 +#: ../../include/features.php:333 msgid "Affinity Tool" msgstr "Herramienta de afinidad" -#: ../../include/features.php:325 +#: ../../include/features.php:334 msgid "Filter stream activity by depth of relationships" msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/features.php:334 +#: ../../include/features.php:343 msgid "Show friend and connection suggestions" msgstr "Mostrar sugerencias de amigos y conexiones" -#: ../../include/features.php:342 +#: ../../include/features.php:351 msgid "Connection Filtering" msgstr "Filtrado de conexiones" -#: ../../include/features.php:343 +#: ../../include/features.php:352 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/features.php:355 +#: ../../include/features.php:364 msgid "Post/Comment Tools" msgstr "Gestión de entradas y comentarios" -#: ../../include/features.php:359 +#: ../../include/features.php:368 msgid "Community Tagging" msgstr "Etiquetas de la comunidad" -#: ../../include/features.php:360 +#: ../../include/features.php:369 msgid "Ability to tag existing posts" msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/features.php:368 +#: ../../include/features.php:377 msgid "Post Categories" msgstr "Temas de las entradas" -#: ../../include/features.php:369 +#: ../../include/features.php:378 msgid "Add categories to your posts" msgstr "Añadir temas a sus publicaciones" -#: ../../include/features.php:377 +#: ../../include/features.php:386 msgid "Emoji Reactions" msgstr "Emoticonos \"emoji\"" -#: ../../include/features.php:378 +#: ../../include/features.php:387 msgid "Add emoji reaction ability to posts" msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/features.php:387 +#: ../../include/features.php:396 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:395 +#: ../../include/features.php:404 msgid "Dislike Posts" msgstr "Desagrado de publicaciones" -#: ../../include/features.php:396 +#: ../../include/features.php:405 msgid "Ability to dislike posts/comments" msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/features.php:404 +#: ../../include/features.php:413 msgid "Star Posts" msgstr "Entradas destacadas" -#: ../../include/features.php:405 +#: ../../include/features.php:414 msgid "Ability to mark special posts with a star indicator" msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/features.php:413 +#: ../../include/features.php:422 msgid "Tag Cloud" msgstr "Nube de etiquetas" -#: ../../include/features.php:414 +#: ../../include/features.php:423 msgid "Provide a personal tag cloud on your channel page" msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/features.php:425 +#: ../../include/features.php:434 msgid "Premium Channel" msgstr "Canal premium" -#: ../../include/features.php:426 +#: ../../include/features.php:435 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/taxonomy.php:267 ../../include/taxonomy.php:288 +#: ../../include/taxonomy.php:325 ../../include/taxonomy.php:346 msgid "Tags" msgstr "Etiquetas" -#: ../../include/taxonomy.php:332 +#: ../../include/taxonomy.php:410 msgid "Keywords" msgstr "Palabras clave" -#: ../../include/taxonomy.php:353 +#: ../../include/taxonomy.php:431 msgid "have" msgstr "tener" -#: ../../include/taxonomy.php:353 +#: ../../include/taxonomy.php:431 msgid "has" msgstr "tiene" -#: ../../include/taxonomy.php:354 +#: ../../include/taxonomy.php:432 msgid "want" msgstr "quiero" -#: ../../include/taxonomy.php:354 +#: ../../include/taxonomy.php:432 msgid "wants" msgstr "quiere" -#: ../../include/taxonomy.php:355 +#: ../../include/taxonomy.php:433 msgid "likes" msgstr "gusta de" -#: ../../include/taxonomy.php:356 +#: ../../include/taxonomy.php:434 msgid "dislikes" msgstr "no gusta de" @@ -13085,214 +13425,178 @@ msgstr "Cumpleaños de %1$s" msgid "Happy Birthday %1$s" msgstr "Feliz cumpleaños %1$s" -#: ../../include/nav.php:90 +#: ../../include/nav.php:91 msgid "Remote authentication" msgstr "Acceder desde su servidor" -#: ../../include/nav.php:90 +#: ../../include/nav.php:91 msgid "Click to authenticate to your home hub" msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/nav.php:99 ../../include/nav.php:123 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:102 -msgid "Your profile page" -msgstr "Su página del perfil" - -#: ../../include/nav.php:105 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/nav.php:107 -msgid "Edit your profile" -msgstr "Editar su perfil" - -#: ../../include/nav.php:113 -msgid "Sign in" -msgstr "Acceder" - -#: ../../include/nav.php:138 -msgid "Take me home" -msgstr "Volver a la página principal" - -#: ../../include/nav.php:140 -msgid "Log me out of this site" -msgstr "Salir de este sitio" +#: ../../include/nav.php:98 +msgid "Network Activity" +msgstr "Actividad de la red" -#: ../../include/nav.php:145 -msgid "Create an account" -msgstr "Crear una cuenta" +#: ../../include/nav.php:100 +msgid "Mark all activity notifications seen" +msgstr "Marcar como vistas todas las notificaciones de actividad" -#: ../../include/nav.php:157 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: ../../include/nav.php:160 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" - -#: ../../include/nav.php:171 -msgid "Grid" -msgstr "Red" - -#: ../../include/nav.php:171 -msgid "Your grid" -msgstr "Mi red" - -#: ../../include/nav.php:172 -msgid "View your network/grid" -msgstr "Ver su red" - -#: ../../include/nav.php:173 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" - -#: ../../include/nav.php:175 +#: ../../include/nav.php:102 msgid "Channel home" msgstr "Mi canal" -#: ../../include/nav.php:176 +#: ../../include/nav.php:103 msgid "View your channel home" msgstr "Ver su página principal del canal" -#: ../../include/nav.php:177 +#: ../../include/nav.php:104 msgid "Mark all channel notifications seen" msgstr "Marcar todas las notificaciones del canal como leídas" -#: ../../include/nav.php:183 -msgid "Notices" -msgstr "Avisos" +#: ../../include/nav.php:109 +msgid "Registrations" +msgstr "Registros" -#: ../../include/nav.php:183 +#: ../../include/nav.php:112 msgid "Notifications" msgstr "Notificaciones" -#: ../../include/nav.php:184 +#: ../../include/nav.php:113 msgid "View all notifications" msgstr "Ver todas las notificaciones" -#: ../../include/nav.php:185 +#: ../../include/nav.php:114 msgid "Mark all system notifications seen" msgstr "Marcar todas las notificaciones del sistema como leídas" -#: ../../include/nav.php:187 +#: ../../include/nav.php:116 msgid "Private mail" msgstr "Correo privado" -#: ../../include/nav.php:188 +#: ../../include/nav.php:117 msgid "View your private messages" msgstr "Ver sus mensajes privados" -#: ../../include/nav.php:189 +#: ../../include/nav.php:118 msgid "Mark all private messages seen" msgstr "Marcar todos los mensajes privados como leídos" -#: ../../include/nav.php:195 +#: ../../include/nav.php:124 msgid "Event Calendar" msgstr "Calendario de eventos" -#: ../../include/nav.php:196 -msgid "View events" -msgstr "Ver los eventos" - -#: ../../include/nav.php:197 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" - -#: ../../include/nav.php:199 +#: ../../include/nav.php:129 ../../include/nav.php:215 msgid "Manage Your Channels" msgstr "Gestionar sus canales" -#: ../../include/nav.php:201 +#: ../../include/nav.php:132 ../../include/nav.php:217 msgid "Account/Channel Settings" msgstr "Ajustes de cuenta/canales" -#: ../../include/nav.php:203 -msgid "Shared Files" -msgstr "Ficheros compartidos" +#: ../../include/nav.php:138 ../../include/nav.php:167 +msgid "End this session" +msgstr "Finalizar esta sesión" -#: ../../include/nav.php:203 -msgid "New files shared with me" -msgstr "Nuevos ficheros compartidos conmigo" +#: ../../include/nav.php:141 +msgid "Your profile page" +msgstr "Su página del perfil" -#: ../../include/nav.php:208 -msgid "Public stream" -msgstr "\"Stream\" público" +#: ../../include/nav.php:144 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:146 +msgid "Edit your profile" +msgstr "Editar su perfil" + +#: ../../include/nav.php:153 ../../include/nav.php:157 +msgid "Sign in" +msgstr "Acceder" + +#: ../../include/nav.php:182 +msgid "Take me home" +msgstr "Volver a la página principal" + +#: ../../include/nav.php:184 +msgid "Log me out of this site" +msgstr "Salir de este sitio" -#: ../../include/nav.php:208 -msgid "Public stream activities" -msgstr "Actividades del \"stream\" público" +#: ../../include/nav.php:189 +msgid "Create an account" +msgstr "Crear una cuenta" -#: ../../include/nav.php:215 +#: ../../include/nav.php:201 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: ../../include/nav.php:204 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" + +#: ../../include/nav.php:224 msgid "Site Setup and Configuration" msgstr "Ajustes y configuración del sitio" -#: ../../include/nav.php:274 +#: ../../include/nav.php:311 msgid "@name, #tag, ?doc, content" msgstr "@nombre, #etiqueta, ?ayuda, contenido" -#: ../../include/nav.php:275 +#: ../../include/nav.php:312 msgid "Please wait..." msgstr "Espere por favor…" -#: ../../include/nav.php:278 +#: ../../include/nav.php:318 msgid "Add Apps" msgstr "Añadir aplicaciones" -#: ../../include/nav.php:279 +#: ../../include/nav.php:319 msgid "Arrange Apps" msgstr "Organizar aplicaciones" -#: ../../include/nav.php:280 +#: ../../include/nav.php:320 msgid "Toggle System Apps" msgstr "Alternar aplicaciones de sistema" -#: ../../include/photos.php:111 +#: ../../include/photos.php:123 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/photos.php:118 +#: ../../include/photos.php:130 msgid "Image file is empty." msgstr "El fichero de imagen está vacío. " -#: ../../include/photos.php:257 +#: ../../include/photos.php:268 msgid "Photo storage failed." msgstr "La foto no ha podido ser guardada." -#: ../../include/photos.php:297 +#: ../../include/photos.php:308 msgid "a new photo" msgstr "una nueva foto" -#: ../../include/photos.php:301 +#: ../../include/photos.php:312 #, 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/photos.php:530 +#: ../../include/photos.php:605 msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../include/zot.php:653 +#: ../../include/zot.php:654 msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:680 +#: ../../include/zot.php:681 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2338 +#: ../../include/zot.php:2368 #, 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:3946 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -13332,14 +13636,18 @@ msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" msgid "Logged out." msgstr "Desconectado/a." -#: ../../include/auth.php:275 +#: ../../include/auth.php:263 +msgid "Email validation is incomplete. Please check your email." +msgstr "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico." + +#: ../../include/auth.php:278 msgid "Failed authentication" msgstr "Autenticación fallida." -#: ../../include/help.php:33 +#: ../../include/help.php:34 msgid "Help:" msgstr "Ayuda:" -#: ../../include/help.php:65 +#: ../../include/help.php:78 msgid "Not Found" msgstr "No encontrado" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index c61251da8..0e2a03bb5 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -60,7 +60,6 @@ App::$strings["%d message sent."] = array( 0 => "%d mensajes enviados.", 1 => "%d mensajes enviados.", ); -App::$strings["Invite"] = "Invitar"; App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; App::$strings["Send invitations"] = "Enviar invitaciones"; App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; @@ -90,7 +89,6 @@ App::$strings["Date: "] = "Fecha: "; App::$strings["Reason: "] = "Razón: "; App::$strings["INVALID CARD DISMISSED!"] = "¡TARJETA NO VÁLIDA RECHAZADA!"; App::$strings["Name: "] = "Nombre: "; -App::$strings["CalDAV"] = "CalDAV"; App::$strings["Event title"] = "Título del evento"; App::$strings["Start date and time"] = "Fecha y hora de comienzo"; App::$strings["Example: YYYY-MM-DD HH:mm"] = "Ejemplo: YYYY-MM-DD HH:mm"; @@ -112,7 +110,6 @@ App::$strings["Select calendar"] = "Seleccionar un calendario"; App::$strings["Delete all"] = "Eliminar todos"; App::$strings["Cancel"] = "Cancelar"; App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado."; -App::$strings["CardDAV"] = "CardDAV"; App::$strings["Name"] = "Nombre"; App::$strings["Organisation"] = "Organización"; App::$strings["Title"] = "Título"; @@ -141,9 +138,7 @@ App::$strings["This site is not a directory server"] = "Este sitio no es un serv App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; App::$strings["Posts and comments"] = "Publicaciones y comentarios"; App::$strings["Only posts"] = "Solo publicaciones"; -App::$strings["Channel Home"] = "Mi canal"; App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -App::$strings["Language"] = "Idioma"; App::$strings["Export Channel"] = "Exportar el canal"; App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; App::$strings["Export Content"] = "Exportar contenidos"; @@ -157,6 +152,7 @@ App::$strings["Public access denied."] = "Acceso público denegado."; App::$strings["Search"] = "Buscar"; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; +App::$strings["Public Stream"] = "\"Stream\" público"; App::$strings["Location not found."] = "Dirección no encontrada."; App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; @@ -211,7 +207,6 @@ App::$strings["Unable to generate preview."] = "No se puede crear la vista previ App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; App::$strings["Event not found."] = "Evento no encontrado."; App::$strings["event"] = "evento"; -App::$strings["Events"] = "Eventos"; App::$strings["Edit event title"] = "Editar el título del evento"; App::$strings["Required"] = "Obligatorio"; App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; @@ -589,6 +584,8 @@ App::$strings["Deliveries per process"] = "Intentos de envío por proceso"; App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5."; App::$strings["Poll interval"] = "Intervalo máximo de tiempo entre dos mensajes sucesivos"; App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega."; +App::$strings["Path to ImageMagick convert program"] = "Ruta al programa de conversión de ImageMagick"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert"; App::$strings["Maximum Load Average"] = "Carga media máxima"; App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; @@ -700,7 +697,7 @@ App::$strings["This website does not expire imported content."] = "Este sitio we App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; -App::$strings["Default Access Control List (ACL)"] = "Lista de control de acceso (ACL) por defecto"; +App::$strings["Default Privacy Group"] = "Grupo de canales por defecto"; App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; App::$strings["Channel permissions category:"] = "Categoría de los permisos del canal:"; App::$strings["Default Permissions Group"] = "Grupo de permisos predeterminados"; @@ -887,7 +884,6 @@ App::$strings["Create new app"] = "Crear una nueva aplicación"; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; App::$strings["Mood"] = "Estado de ánimo"; App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -App::$strings["Connections"] = "Conexiones"; App::$strings["Blocked"] = "Bloqueadas"; App::$strings["Ignored"] = "Ignoradas"; App::$strings["Hidden"] = "Ocultas"; @@ -916,12 +912,12 @@ App::$strings["Approve connection"] = "Aprobar esta conexión"; App::$strings["Ignore connection"] = "Ignorar esta conexión"; App::$strings["Ignore"] = "Ignorar"; App::$strings["Recent activity"] = "Actividad reciente"; +App::$strings["Connections"] = "Conexiones"; App::$strings["Search your connections"] = "Buscar sus conexiones"; App::$strings["Connections search"] = "Buscar conexiones"; App::$strings["Find"] = "Encontrar"; App::$strings["item"] = "elemento"; App::$strings["Source of Item"] = "Origen del elemento"; -App::$strings["View Bookmarks"] = "Ver los marcadores"; App::$strings["Bookmark added"] = "Marcador añadido"; App::$strings["My Bookmarks"] = "Mis marcadores"; App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; @@ -936,7 +932,6 @@ App::$strings["Delete Album"] = "Borrar álbum"; App::$strings["Delete Photo"] = "Borrar foto"; App::$strings["No photos selected"] = "No hay fotos seleccionadas"; App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -App::$strings["Photos"] = "Fotos"; App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; App::$strings["Upload Photos"] = "Subir fotos"; @@ -995,14 +990,22 @@ App::$strings["Recent Photos"] = "Fotos recientes"; App::$strings["Profile Unavailable."] = "Perfil no disponible"; App::$strings["Not found"] = "No encontrado"; App::$strings["Invalid channel"] = "Canal no válido"; -App::$strings["Wiki"] = "Wiki"; +App::$strings["Error retrieving wiki"] = "Error al recuperar el wiki"; +App::$strings["Error creating zip file export folder"] = "Error al crear el fichero comprimido zip de la carpeta a exportar"; +App::$strings["Error downloading wiki: "] = "Error al descargar el wiki: "; App::$strings["Wikis"] = "Wikis"; App::$strings["Download"] = "Descargar"; App::$strings["Create New"] = "Crear"; App::$strings["Wiki name"] = "Nombre del wiki"; App::$strings["Content type"] = "Tipo de contenido"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBcode"; +App::$strings["Text"] = "Texto"; App::$strings["Type"] = "Tipo"; +App::$strings["Any type"] = "Cualquier tipo"; +App::$strings["Lock content type"] = "Tipo de contenido bloqueado"; App::$strings["Create a status post for this wiki"] = "Crear un mensaje de estado para este wiki"; +App::$strings["Edit Wiki Name"] = "Editar el nombre del wiki"; App::$strings["Wiki not found"] = "Wiki no encontrado"; App::$strings["Rename page"] = "Renombrar la página"; App::$strings["Error retrieving page content"] = "Error al recuperar el contenido de la página"; @@ -1025,6 +1028,8 @@ App::$strings["Error creating wiki. Invalid name."] = "Error al crear el wiki: e App::$strings["A wiki with this name already exists."] = "Ya hay un wiki con este nombre."; App::$strings["Wiki created, but error creating Home page."] = "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio."; App::$strings["Error creating wiki"] = "Error al crear el wiki"; +App::$strings["Error updating wiki. Invalid name."] = "Error al actualizar el wiki. Nombre no válido."; +App::$strings["Error updating wiki"] = "Error al actualizar el wiki"; App::$strings["Wiki delete permission denied."] = "Se ha denegado el permiso para eliminar el wiki."; App::$strings["Error deleting wiki"] = "Se ha producido un error al eliminar el wiki"; App::$strings["New page created"] = "Se ha creado la nueva página"; @@ -1036,9 +1041,12 @@ App::$strings["toggle full screen mode"] = "cambiar al modo de pantalla completa App::$strings["Layout updated."] = "Plantilla actualizada."; App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; +App::$strings["(modified)"] = "(modificado)"; +App::$strings["Reset"] = "Reiniciar"; App::$strings["Layout not found."] = "Plantilla no encontrada"; App::$strings["Module Name:"] = "Nombre del módulo:"; App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; +App::$strings["Edit another layout"] = "Editar otro diseño"; App::$strings["Poke"] = "Toques y otras cosas"; App::$strings["Poke somebody"] = "Dar un toque a alguien"; App::$strings["Poke/Prod"] = "Toque/Incitación"; @@ -1076,9 +1084,11 @@ App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha al App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; App::$strings["added your channel"] = "añadió este canal a sus conexiones"; +App::$strings["requires approval"] = "requiere aprobación"; App::$strings["g A l F d"] = "g A l d F"; App::$strings["[today]"] = "[hoy]"; App::$strings["posted an event"] = "publicó un evento"; +App::$strings["shared a file with you"] = "compartió un archivo con usted"; App::$strings["Invalid item."] = "Elemento no válido."; App::$strings["Page not found."] = "Página no encontrada."; App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; @@ -1156,7 +1166,6 @@ App::$strings["Please choose the profile you would like to display to %s when vi App::$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."; App::$strings["Last update:"] = "Última actualización:"; App::$strings["Details"] = "Detalles"; -App::$strings["My Chatrooms"] = "Mis salas de chat"; App::$strings["Room not found"] = "Sala no encontrada"; App::$strings["Leave Room"] = "Abandonar la sala"; App::$strings["Delete Room"] = "Eliminar esta sala"; @@ -1172,6 +1181,7 @@ App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; App::$strings["Expiration"] = "Caducidad"; App::$strings["min"] = "min"; +App::$strings["Photos"] = "Fotos"; App::$strings["Files"] = "Ficheros"; App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; App::$strings["Unable to create menu."] = "No se puede crear el menú."; @@ -1298,6 +1308,8 @@ App::$strings["Make Default"] = "Convertir en predeterminado"; App::$strings["%d new messages"] = "%d mensajes nuevos"; App::$strings["%d new introductions"] = "%d nuevas solicitudes de conexión"; App::$strings["Delegated Channel"] = "Canal delegado"; +App::$strings["Cards"] = "Fichas"; +App::$strings["Add Card"] = "Añadir una ficha"; App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; App::$strings["About this site"] = "Acerca de este sitio"; App::$strings["Site Name"] = "Nombre del sitio"; @@ -1314,11 +1326,11 @@ App::$strings["Ratings"] = "Valoraciones"; App::$strings["Rating: "] = "Valoración:"; App::$strings["Website: "] = "Sitio web:"; App::$strings["Description: "] = "Descripción:"; -App::$strings["Webpages"] = "Páginas web"; App::$strings["Import Webpage Elements"] = "Importar elementos de una página web"; App::$strings["Import selected"] = "Importar elementos seleccionados"; App::$strings["Export Webpage Elements"] = "Exportar elementos de una página web"; App::$strings["Export selected"] = "Exportar los elementos seleccionados"; +App::$strings["Webpages"] = "Páginas web"; App::$strings["Actions"] = "Acciones"; App::$strings["Page Link"] = "Vínculo de la página"; App::$strings["Page Title"] = "Título de página"; @@ -1327,6 +1339,13 @@ App::$strings["Error opening zip file"] = "Error al abrir el fichero comprimido App::$strings["Invalid folder path."] = "La ruta de la carpeta no es válida."; App::$strings["No webpage elements detected."] = "No se han detectado elementos de ninguna página web."; App::$strings["Import complete."] = "Importación completada."; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Los cambios en el nombre de un canal no está permitida hasta pasadas 48 horas desde el cambio de contraseña de la cuenta."; +App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +App::$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 miembros de este sitio."; +App::$strings["Change channel nickname/address"] = "Cambiar el alias o la dirección del canal"; +App::$strings["Any/all connections on other networks will be lost!"] = "¡Cualquier/todas las conexiones en otras redes se perderán!"; +App::$strings["New channel address"] = "Nueva dirección del canal"; +App::$strings["Rename Channel"] = "Renombrar el canal"; App::$strings["Item is not editable"] = "El elemento no es editable"; App::$strings["Edit post"] = "Editar la entrada"; App::$strings["Invalid message"] = "Mensaje no válido"; @@ -1362,7 +1381,6 @@ App::$strings["Edit Source"] = "Editar fuente"; App::$strings["Delete Source"] = "Eliminar fuente"; App::$strings["Source removed"] = "Fuente eliminada"; App::$strings["Unable to remove source."] = "No se puede eliminar la fuente."; -App::$strings["Post"] = "Publicación"; App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; @@ -1381,7 +1399,6 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s n App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; App::$strings["Action completed."] = "Acción completada."; App::$strings["Thank you."] = "Gracias."; -App::$strings["Directory"] = "Directorio"; App::$strings["%d rating"] = array( 0 => "%d valoración", 1 => "%d valoraciones", @@ -1413,7 +1430,6 @@ App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; -App::$strings["Suggest Channels"] = "Sugerir canales"; App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; @@ -1422,7 +1438,6 @@ App::$strings["Unable to lookup recipient."] = "No se puede asociar a un destina App::$strings["Unable to communicate with requested channel."] = "No se puede establecer la comunicación con el canal solicitado."; App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -App::$strings["Mail"] = "Correo"; App::$strings["Messages"] = "Mensajes"; App::$strings["message"] = "mensaje"; App::$strings["Message recalled."] = "Mensaje revocado."; @@ -1464,7 +1479,6 @@ App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nomb App::$strings["Enter a folder name"] = "Escriba un nombre de carpeta"; App::$strings["or select an existing folder (doubleclick)"] = "o seleccione una (con un doble click)"; App::$strings["Save to Folder"] = "Guardar en carpeta"; -App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; @@ -1502,6 +1516,7 @@ App::$strings["Developers"] = "Desarrolladores"; App::$strings["Tutorials"] = "Tutoriales"; App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; App::$strings["Contents"] = "Contenidos"; +App::$strings["Item has been removed."] = "Se ha eliminado el elemento."; App::$strings["Tag removed"] = "Etiqueta eliminada."; App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; @@ -1509,13 +1524,11 @@ App::$strings["No such group"] = "No se encuentra el grupo"; App::$strings["No such channel"] = "No se encuentra el canal"; App::$strings["forum"] = "foro"; App::$strings["Search Results For:"] = "Buscar resultados para:"; -App::$strings["Activity"] = "Actividad"; App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; App::$strings["Privacy group: "] = "Grupo de canales: "; App::$strings["Invalid connection."] = "Conexión no válida."; App::$strings["Invalid channel."] = "El canal no es válido."; App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; App::$strings["\$Projectname"] = "\$Projectname"; App::$strings["Welcome to %s"] = "Bienvenido a %s"; App::$strings["Permission Denied."] = "Permiso denegado"; @@ -1530,8 +1543,8 @@ App::$strings["Share this file"] = "Compartir este fichero"; App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; App::$strings["Show in your contacts shared folder"] = "Mostrar en la carpeta compartida con sus contactos"; App::$strings["No channel."] = "Ningún canal."; -App::$strings["Common connections"] = "Conexiones comunes"; App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["View Common Connections"] = "Ver las conexiones comunes"; App::$strings["No connections."] = "Sin conexiones."; App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; App::$strings["View Connections"] = "Ver conexiones"; @@ -1554,6 +1567,7 @@ App::$strings["Website:"] = "Sitio web:"; App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; +App::$strings["Edit Card"] = "Editar la ficha"; App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; @@ -1569,7 +1583,6 @@ App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; App::$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."; App::$strings["Email Address"] = "Dirección de correo electrónico"; -App::$strings["Reset"] = "Reiniciar"; App::$strings["Mark all seen"] = "Marcar todo como visto"; App::$strings["0. Beginner/Basic"] = "0. Principiante/Básico"; App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novicio - no está preparado pero está dispuestos a aprender"; @@ -1579,13 +1592,26 @@ App::$strings["4. Expert - I can write computer code"] = "4. Experto - Puedo esc App::$strings["5. Wizard - I probably know more than you do"] = "5. Asistente - probablemente sé más que tú"; App::$strings["Site Admin"] = "Administrador del sitio"; App::$strings["Report Bug"] = "Informe de errores"; +App::$strings["View Bookmarks"] = "Ver los marcadores"; +App::$strings["My Chatrooms"] = "Mis salas de chat"; App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; +App::$strings["Suggest Channels"] = "Sugerir canales"; App::$strings["Login"] = "Iniciar sesión"; +App::$strings["Activity"] = "Actividad"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Channel Home"] = "Mi canal"; +App::$strings["Events"] = "Eventos"; +App::$strings["Directory"] = "Directorio"; +App::$strings["Mail"] = "Correo"; App::$strings["Chat"] = "Chat"; App::$strings["Probe"] = "Probar"; App::$strings["Suggest"] = "Sugerir"; App::$strings["Random Channel"] = "Canal aleatorio"; +App::$strings["Invite"] = "Invitar"; App::$strings["Features"] = "Funcionalidades"; +App::$strings["Language"] = "Idioma"; +App::$strings["Post"] = "Publicación"; App::$strings["Profile Photo"] = "Foto del perfil"; App::$strings["Purchase"] = "Comprar"; App::$strings["Undelete"] = "Recuperar"; @@ -1676,6 +1702,7 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Por fav App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Aviso]"; App::$strings["created a new post"] = "ha creado una nueva entrada"; App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; +App::$strings["Wiki updated successfully"] = "El wiki se ha actualizado con éxito"; App::$strings["Wiki files deleted successfully"] = "Se han borrado con éxito los ficheros del wiki"; App::$strings["Update Error at %s"] = "Error de actualización en %s"; App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; @@ -1717,6 +1744,7 @@ App::$strings["Vote"] = "Votar"; App::$strings["Voting Options"] = "Opciones de votación"; App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; App::$strings["Add to Calendar"] = "Añadir al calendario"; +App::$strings["This is an unsaved preview"] = "Esta es una previsualización sin guardar"; App::$strings["%s show all"] = "%s mostrar todo"; App::$strings["Bold"] = "Negrita"; App::$strings["Italic"] = "Itálico "; @@ -1724,6 +1752,7 @@ App::$strings["Underline"] = "Subrayar"; App::$strings["Quote"] = "Citar"; App::$strings["Code"] = "Código"; App::$strings["Image"] = "Imagen"; +App::$strings["Attach File"] = "Fichero adjunto"; App::$strings["Insert Link"] = "Insertar enlace"; App::$strings["Video"] = "Vídeo"; App::$strings["Your full name (required)"] = "Su nombre completo (requerido)"; @@ -1826,6 +1855,34 @@ App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; App::$strings["Permission Groups"] = "Grupos de permisos"; App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; +App::$strings["New Network Activity"] = "Nueva actividad en la red"; +App::$strings["New Network Activity Notifications"] = "Avisos de nueva actividad en la red"; +App::$strings["View your network activity"] = "Ver su actividad en la red"; +App::$strings["Mark all notifications read"] = "Marcar todas las notificaciones como leídas"; +App::$strings["New Home Activity"] = "Nueva actividad en su página principal"; +App::$strings["New Home Activity Notifications"] = "Avisos de nueva actividad en su página principal"; +App::$strings["View your home activity"] = "Ver su actividad en su página principal"; +App::$strings["Mark all notifications seen"] = "Marcar todas las notificaciones como vistas"; +App::$strings["New Mails"] = "Nuevos mensajes de correo"; +App::$strings["New Mails Notifications"] = "Avisos de nuevos mensajes de correo"; +App::$strings["View your private mails"] = "Ver sus correos privados"; +App::$strings["Mark all messages seen"] = "Marcar todos los mensajes como vistos"; +App::$strings["New Events"] = "Eventos nuevos"; +App::$strings["New Events Notifications"] = "Avisos de nuevos eventos"; +App::$strings["View events"] = "Ver los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["New Connections Notifications"] = "Avisos de nuevas conexiones"; +App::$strings["View all connections"] = "Ver todas las conexiones"; +App::$strings["New Files"] = "Ficheros nuevos"; +App::$strings["New Files Notifications"] = "Avisos de nuevos ficheros"; +App::$strings["Notices"] = "Avisos"; +App::$strings["View all notices"] = "Ver todos los avisos"; +App::$strings["Mark all notices seen"] = "Marcar como leídos todos los avisos"; +App::$strings["New Registrations"] = "Registros nuevos"; +App::$strings["New Registrations Notifications"] = "Notificaciones de nuevos registros"; +App::$strings["Public Stream Notifications"] = "Avisos del \"stream\" público"; +App::$strings["View the public stream"] = "Ver el \"stream\" público"; +App::$strings["Loading..."] = "Cargando..."; App::$strings["Source channel not found."] = "No se ha encontrado el canal de origen."; App::$strings["Create an account to access services and applications"] = "Crear una cuenta para acceder a los servicios y aplicaciones"; App::$strings["Logout"] = "Finalizar sesión"; @@ -1925,6 +1982,7 @@ App::$strings["Or select from a free OpenClipart.org image:"] = "O seleccionar u App::$strings["Search Term"] = "Término de búsqueda"; App::$strings["Unknown error. Please try again later."] = "Error desconocido. Por favor, inténtelo otra vez."; App::$strings["Profile photo updated successfully."] = "Se ha actualizado con éxito la foto de perfil."; +App::$strings["invalid target signature"] = "La firma recibida no es válida"; App::$strings["Flag Adult Photos"] = "Indicador (\"flag\") de fotos de adultos"; App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada"; App::$strings["Post to WordPress"] = "Publicar en WordPress"; @@ -2094,9 +2152,6 @@ App::$strings["Followed hashtags (comma separated, do not include the #)"] = "\" App::$strings["Diaspora Protocol Settings"] = "Ajustes del protocolo de Diaspora"; App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero de importación."; App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; -App::$strings["Error retrieving wiki"] = "Error al recuperar el wiki"; -App::$strings["Error creating zip file export folder"] = "Error al crear el fichero comprimido zip de la carpeta a exportar"; -App::$strings["Error downloading wiki: "] = "Error al descargar el wiki: "; App::$strings["Your account on %s will expire in a few days."] = "Su cuenta en %s caducará en unos pocos días."; App::$strings["Your $Productname test account is about to expire."] = "Su cuenta de prueba de $Productname está a punto de caducar."; App::$strings["Enable Rainbowtag"] = "Habilitar Rainbowtag"; @@ -2106,6 +2161,20 @@ App::$strings["Show Upload Limits"] = "Mostrar los límites de subida"; App::$strings["Hubzilla configured maximum size: "] = "Tamaño máximo configurado por Hubzilla: "; App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize: "; App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (debe ser mayor que upload_max_filesize): "; +App::$strings["generic profile image"] = "imagen del perfil general"; +App::$strings["random geometric pattern"] = "patrón geométrico aleatorio"; +App::$strings["monster face"] = "cara de monstruo"; +App::$strings["computer generated face"] = "cara generada por ordenador"; +App::$strings["retro arcade style face"] = "cara de estilo retro arcade"; +App::$strings["Hub default profile photo"] = "Foto del perfil por defecto del hub"; +App::$strings["Information"] = "Información"; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "El addon Libravatar también está instalado. Por favor deshabilite el addon de Libravatar o este addon de Gravatar.
El addon de Libravatar volverá a Gravatar si no se encuentra nada en Libravatar."; +App::$strings["Save Settings"] = "Guardar ajustes"; +App::$strings["Default avatar image"] = "Imagen del avatar por defecto"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Selecciona la imagen de avatar predeterminada si no se encontró ninguna en Gravatar. Ver README"; +App::$strings["Rating of images"] = "Valoración de las imágenes"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Seleccione la valoración adecuada del avatar para su sitio. Ver README"; +App::$strings["Gravatar settings updated."] = "Se han actualizado los ajustes de Gravatar."; App::$strings["Recent Channel/Profile Viewers"] = "Visitantes recientes del canal o perfil"; App::$strings["This plugin/addon has not been configured."] = "El plugin o complemento no se ha configurado."; App::$strings["Please visit the Visage settings on %s"] = "Por favor, revise los ajustes de Visage en %s"; @@ -2131,7 +2200,6 @@ App::$strings["Default zoom"] = "Zoom predeterminado"; App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "El nivel de zoom predeterminado. (1: mundo, 18: el más alto, también depende del servidor del mosaico de imágenes)"; App::$strings["Include marker on map"] = "Incluir un marcador en el mapa"; App::$strings["Include a marker on the map."] = "Incluir un marcador en el mapa."; -App::$strings["Save Settings"] = "Guardar ajustes"; App::$strings["text to include in all outgoing posts from this site"] = "texto a incluir en todos los mensajes salientes de este sitio"; App::$strings["Post to Friendica"] = "Publicar en Friendica"; App::$strings["rtof Settings saved."] = "Se han guardado los ajustes de rtof"; @@ -2183,6 +2251,11 @@ App::$strings["This will import all your Friendica photo albums to this Red chan App::$strings["Friendica Server base URL"] = "URL base del servidor de Friendica"; App::$strings["Friendica Login Username"] = "Nombre de inicio de sesión en Friendica"; App::$strings["Friendica Login Password"] = "Contraseña de inicio de sesión en Friendica"; +App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["ActivityPub Protocol Settings updated."] = "Se han actualizado los ajustes del protocolo ActivityPub."; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos."; +App::$strings["Enable the ActivityPub protocol for this channel"] = "Activar el protocolo ActivityPub para este canal"; +App::$strings["ActivityPub Protocol Settings"] = "Ajustes del protocolo ActivityPub"; App::$strings["Project Servers and Resources"] = "Servidores y recursos del proyecto"; App::$strings["Project Creator and Tech Lead"] = "Creador del proyecto y director técnico"; App::$strings["Admin, developer, directorymin, support bloke"] = "Administrador, desarrollador, administrador del directorio, trabajador de apoyo"; @@ -2265,7 +2338,6 @@ App::$strings["Invalid game."] = "Juego no válido."; App::$strings["You are not a player in this game."] = "Usted no participa en este juego."; App::$strings["You must be a local channel to create a game."] = "Debe ser un canal local para crear un juego"; App::$strings["You must select one opponent that is not yourself."] = "Debe seleccionar un oponente que no sea usted mismo."; -App::$strings["Creating new game..."] = "Crear un nuevo juego..."; App::$strings["You must select white or black."] = "Debe elegir blancas o negras."; App::$strings["Error creating new game."] = "Error al crear un nuevo juego."; App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; @@ -2406,7 +2478,6 @@ App::$strings["Redmatrix File Storage Import"] = "Importar repositorio de ficher App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Esto importará todos sus ficheros de la nube de Redmatrix a este canal."; App::$strings["file"] = "fichero"; App::$strings["Send email to all members"] = "Enviar un correo electrónico a todos los miembros"; -App::$strings["$1%s Administrator"] = "Administrador de $1%s "; App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d de %2\$d mensajes enviados."; App::$strings["Send email to all hub members."] = "Enviar un correo electrónico a todos los miembros del hub."; App::$strings["Sender Email address"] = "Dirección de correo electrónico del remitente"; @@ -2479,7 +2550,6 @@ App::$strings["Categories:"] = "Temas:"; App::$strings["Filed under:"] = "Archivado bajo:"; App::$strings["View in context"] = "Mostrar en su contexto"; App::$strings["remove"] = "eliminar"; -App::$strings["Loading..."] = "Cargando..."; App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; App::$strings["View Source"] = "Ver el código fuente de la entrada"; App::$strings["Follow Thread"] = "Seguir este hilo"; @@ -2519,8 +2589,6 @@ App::$strings["Toggle comments"] = "Activar o desactivar los comentarios"; App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)"; App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -App::$strings["Discover"] = "Descubrir"; -App::$strings["Imported public streams"] = "Contenidos públicos importados"; App::$strings["Commented Order"] = "Comentarios recientes"; App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; App::$strings["Posted Order"] = "Publicaciones recientes"; @@ -2537,6 +2605,7 @@ App::$strings["Photo Albums"] = "Álbumes de fotos"; App::$strings["Files and Storage"] = "Ficheros y repositorio"; App::$strings["Bookmarks"] = "Marcadores"; App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["View Cards"] = "Ver las fichas"; App::$strings["View Webpages"] = "Ver páginas web"; App::$strings["__ctx:noun__ Attending"] = array( 0 => "Participaré", @@ -2636,9 +2705,12 @@ App::$strings["Download binary/encrypted content"] = "Descargar contenido binari App::$strings["default"] = "por defecto"; App::$strings["Page layout"] = "Plantilla de la página"; App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; +App::$strings["HTML"] = "HTML"; +App::$strings["Comanche Layout"] = "Plantilla de Comanche"; +App::$strings["PHP"] = "PHP"; App::$strings["Page content type"] = "Tipo de contenido de la página"; App::$strings["activity"] = "la actividad"; -App::$strings["a-z, 0-9, -, _, and . only"] = "a-z, 0-9, -, _, and . only"; +App::$strings["a-z, 0-9, -, and _ only"] = "a-z, 0-9, -, and _ only"; App::$strings["Design Tools"] = "Herramientas de diseño web"; App::$strings["Pages"] = "Páginas"; App::$strings["Import website..."] = "Importar un sitio web..."; @@ -2667,18 +2739,16 @@ App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Ferná App::$strings["Random Profile"] = "Perfil aleatorio"; App::$strings["Invite Friends"] = "Invitar a amigos"; App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; -App::$strings["%d connection in common"] = array( - 0 => "%d conexión en común", - 1 => "%d conexiones en común", -); -App::$strings["show more"] = "mostrar más"; +App::$strings["Common Connections"] = "Conexiones comunes"; +App::$strings["View all %d common connections"] = "Ver todas las %d conexiones comunes"; App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; App::$strings["Channel location missing."] = "Falta la dirección del canal."; App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Remote channel or protocol unavailable."] = "Canal remoto o protocolo no disponible."; App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; App::$strings["Delete this item?"] = "¿Borrar este elemento?"; App::$strings["%s show less"] = "%s mostrar menos"; @@ -2762,7 +2832,6 @@ App::$strings["Path not found."] = "Ruta no encontrada"; App::$strings["mkdir failed."] = "mkdir ha fallado."; App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; App::$strings["Empty path"] = "Ruta vacía"; -App::$strings["guest:"] = "invitado: "; App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "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"; App::$strings["(Unknown)"] = "(Desconocido)"; App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; @@ -2785,8 +2854,6 @@ App::$strings["Empty name"] = "Nombre vacío"; App::$strings["Name too long"] = "Nombre demasiado largo"; App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -App::$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 miembros de este sitio."; App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; App::$strings["Default Profile"] = "Perfil principal"; App::$strings["Unable to retrieve modified identity"] = "No se puede recuperar la identidad modficada"; @@ -2818,7 +2885,6 @@ App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; App::$strings["Work/employment:"] = "Trabajo:"; App::$strings["School/education:"] = "Estudios:"; App::$strings["Like this thing"] = "Me gusta esto"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; App::$strings["Starts:"] = "Comienza:"; App::$strings["Finishes:"] = "Finaliza:"; @@ -2837,7 +2903,6 @@ App::$strings["Friendica"] = "Friendica"; App::$strings["OStatus"] = "OStatus"; App::$strings["GNU-Social"] = "GNU Social"; App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["ActivityPub"] = "ActivityPub"; App::$strings["Diaspora"] = "Diaspora"; App::$strings["Facebook"] = "Facebook"; App::$strings["Zot"] = "Zot"; @@ -2856,6 +2921,7 @@ App::$strings["Image/photo"] = "Imagen/foto"; App::$strings["Encrypted content"] = "Contenido cifrado"; App::$strings["Install %s element: "] = "Instalar el elemento %s:"; App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; +App::$strings["card"] = "ficha"; App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; App::$strings["spoiler"] = "spoiler"; App::$strings["$1 wrote:"] = "$1 escribió:"; @@ -2863,6 +2929,7 @@ App::$strings[" by "] = "por"; App::$strings[" on "] = "en"; App::$strings["Embedded content"] = "Contenido incorporado"; App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$sda la bienvenida a %2\$s"; App::$strings["General Features"] = "Funcionalidades básicas"; App::$strings["Multiple Profiles"] = "Múltiples perfiles"; App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; @@ -2875,6 +2942,7 @@ App::$strings["Provide managed web pages on your channel"] = "Proveer páginas w App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; App::$strings["Private Notes"] = "Notas privadas"; App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; +App::$strings["Create personal planning cards"] = "Crear fichas de planificación personal"; App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; App::$strings["Photo Location"] = "Ubicación de las fotos"; @@ -2998,24 +3066,12 @@ App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; App::$strings["Remote authentication"] = "Acceder desde su servidor"; App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Sign in"] = "Acceder"; -App::$strings["Take me home"] = "Volver a la página principal"; -App::$strings["Log me out of this site"] = "Salir de este sitio"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; -App::$strings["Grid"] = "Red"; -App::$strings["Your grid"] = "Mi red"; -App::$strings["View your network/grid"] = "Ver su red"; -App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +App::$strings["Network Activity"] = "Actividad de la red"; +App::$strings["Mark all activity notifications seen"] = "Marcar como vistas todas las notificaciones de actividad"; App::$strings["Channel home"] = "Mi canal"; App::$strings["View your channel home"] = "Ver su página principal del canal"; App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Notices"] = "Avisos"; +App::$strings["Registrations"] = "Registros"; App::$strings["Notifications"] = "Notificaciones"; App::$strings["View all notifications"] = "Ver todas las notificaciones"; App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; @@ -3023,14 +3079,18 @@ App::$strings["Private mail"] = "Correo privado"; App::$strings["View your private messages"] = "Ver sus mensajes privados"; App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; App::$strings["Event Calendar"] = "Calendario de eventos"; -App::$strings["View events"] = "Ver los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; App::$strings["Manage Your Channels"] = "Gestionar sus canales"; App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["Shared Files"] = "Ficheros compartidos"; -App::$strings["New files shared with me"] = "Nuevos ficheros compartidos conmigo"; -App::$strings["Public stream"] = "\"Stream\" público"; -App::$strings["Public stream activities"] = "Actividades del \"stream\" público"; +App::$strings["End this session"] = "Finalizar esta sesión"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Sign in"] = "Acceder"; +App::$strings["Take me home"] = "Volver a la página principal"; +App::$strings["Log me out of this site"] = "Salir de este sitio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; App::$strings["Please wait..."] = "Espere por favor…"; @@ -3046,7 +3106,6 @@ App::$strings["Upload New Photos"] = "Subir nuevas fotos"; App::$strings["Invalid data packet"] = "Paquete de datos no válido"; App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; -App::$strings["invalid target signature"] = "La firma recibida no es válida"; App::$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."] = "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."; App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; App::$strings["edit"] = "editar"; @@ -3056,6 +3115,7 @@ App::$strings["Channels not in any privacy group"] = "Sin canales en ningún gru App::$strings["New window"] = "Nueva ventana"; App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; App::$strings["Logged out."] = "Desconectado/a."; +App::$strings["Email validation is incomplete. Please check your email."] = "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico."; App::$strings["Failed authentication"] = "Autenticación fallida."; App::$strings["Help:"] = "Ayuda:"; App::$strings["Not Found"] = "No encontrado"; -- cgit v1.2.3 From 687114b4073029d4af7b6e8e827cef8ab422ca8b Mon Sep 17 00:00:00 2001 From: phellmes Date: Sat, 21 Oct 2017 13:52:53 +0200 Subject: Update DE translation strings --- view/de/hmessages.po | 3110 +++++++++++++++++++++++++++----------------------- view/de/hstrings.php | 192 ++-- 2 files changed, 1835 insertions(+), 1467 deletions(-) diff --git a/view/de/hmessages.po b/view/de/hmessages.po index 8ab7a7f21..85fb8ca4e 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 12:13+0200\n" -"PO-Revision-Date: 2017-08-05 12:18+0000\n" +"POT-Creation-Date: 2017-10-19 12:01+0200\n" +"PO-Revision-Date: 2017-10-21 11:21+0000\n" "Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -164,14 +164,14 @@ msgid "Special - Group Repository" msgstr "Speziell - Gruppenarchiv" #: ../../Zotlabs/Access/PermissionRoles.php:270 -#: ../../Zotlabs/Module/Cdav.php:1123 ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Settings/Channel.php:467 -#: ../../Zotlabs/Module/Connedit.php:932 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:798 #: ../../Zotlabs/Module/Register.php:213 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 #: ../../include/selectors.php:140 ../../include/event.php:1297 -#: ../../include/event.php:1304 ../../include/connections.php:681 -#: ../../include/connections.php:688 +#: ../../include/event.php:1304 ../../include/connections.php:689 +#: ../../include/connections.php:696 msgid "Other" msgstr "Andere" @@ -184,16 +184,16 @@ msgstr "Benutzerdefiniert/Expertenmodus" #: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1062 +#: ../../Zotlabs/Module/Cards.php:29 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1163 msgid "Requested profile is not available." msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 #: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 #: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:115 -#: ../../Zotlabs/Module/Channel.php:245 ../../Zotlabs/Module/Channel.php:285 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 +#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 #: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 #: ../../Zotlabs/Module/Appman.php:82 ../../Zotlabs/Module/Regmod.php:21 @@ -201,21 +201,21 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 #: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:275 +#: ../../Zotlabs/Module/Thing.php:295 ../../Zotlabs/Module/Thing.php:336 #: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:102 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 #: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 #: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:235 ../../Zotlabs/Module/Wiki.php:341 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:388 #: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:280 -#: ../../Zotlabs/Module/Profile_photo.php:293 +#: ../../Zotlabs/Module/Profile_photo.php:288 +#: ../../Zotlabs/Module/Profile_photo.php:301 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:223 #: ../../Zotlabs/Module/Item.php:240 ../../Zotlabs/Module/Item.php:250 -#: ../../Zotlabs/Module/Item.php:1076 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:125 ../../Zotlabs/Module/Connedit.php:385 +#: ../../Zotlabs/Module/Item.php:1102 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:125 ../../Zotlabs/Module/Connedit.php:389 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 #: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 #: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 @@ -225,22 +225,25 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Webpages.php:118 ../../Zotlabs/Module/Block.php:24 -#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Suggest.php:28 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mail.php:146 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cards.php:68 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Display.php:343 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:85 -#: ../../Zotlabs/Module/Filestorage.php:112 ../../Zotlabs/Module/Common.php:39 +#: ../../Zotlabs/Module/Filestorage.php:112 ../../Zotlabs/Module/Common.php:38 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../Zotlabs/Web/WebServer.php:131 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../Zotlabs/Web/WebServer.php:169 #: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 #: ../../addon/gitwiki/Mod_Gitwiki.php:196 #: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 @@ -248,9 +251,9 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../include/attach.php:255 ../../include/attach.php:269 #: ../../include/attach.php:276 ../../include/attach.php:344 #: ../../include/attach.php:358 ../../include/attach.php:365 -#: ../../include/attach.php:443 ../../include/attach.php:918 -#: ../../include/attach.php:992 ../../include/attach.php:1157 -#: ../../include/items.php:3440 ../../include/photos.php:28 +#: ../../include/attach.php:443 ../../include/attach.php:924 +#: ../../include/attach.php:998 ../../include/attach.php:1163 +#: ../../include/items.php:3489 ../../include/photos.php:28 msgid "Permission denied." msgstr "Berechtigung verweigert." @@ -259,7 +262,7 @@ msgstr "Berechtigung verweigert." msgid "Block Name" msgstr "Block-Name" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2280 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2288 msgid "Blocks" msgstr "Blöcke" @@ -277,62 +280,64 @@ msgstr "Erstellt" msgid "Edited" msgstr "Geändert" -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Cdav.php:1126 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Cdav.php:1185 #: ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Connedit.php:935 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Menu.php:118 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Webpages.php:239 ../../Zotlabs/Storage/Browser.php:229 -#: ../../Zotlabs/Storage/Browser.php:335 ../../Zotlabs/Widget/Cdav.php:127 -#: ../../Zotlabs/Widget/Cdav.php:164 +#: ../../Zotlabs/Module/Cards.php:96 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:335 +#: ../../Zotlabs/Widget/Cdav.php:127 ../../Zotlabs/Widget/Cdav.php:164 msgid "Create" msgstr "Erstelle" #: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Settings/Oauth.php:149 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:114 #: ../../Zotlabs/Module/Connections.php:260 #: ../../Zotlabs/Module/Connections.php:297 -#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:167 -#: ../../Zotlabs/Module/Wiki.php:300 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:346 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Layouts.php:193 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Lib/Apps.php:393 ../../Zotlabs/Lib/ThreadItem.php:107 -#: ../../Zotlabs/Storage/Browser.php:239 ../../Zotlabs/Widget/Cdav.php:125 -#: ../../Zotlabs/Widget/Cdav.php:161 ../../addon/gitwiki/Mod_Gitwiki.php:151 -#: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1161 -#: ../../include/channel.php:1165 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:399 +#: ../../Zotlabs/Lib/ThreadItem.php:111 ../../Zotlabs/Storage/Browser.php:239 +#: ../../Zotlabs/Widget/Cdav.php:125 ../../Zotlabs/Widget/Cdav.php:161 +#: ../../addon/gitwiki/Mod_Gitwiki.php:151 +#: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1262 +#: ../../include/channel.php:1266 ../../include/menu.php:113 msgid "Edit" msgstr "Bearbeiten" -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1049 #: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Webpages.php:241 -#: ../../Zotlabs/Widget/Cdav.php:123 ../../include/conversation.php:1308 +#: ../../Zotlabs/Widget/Cdav.php:123 ../../include/conversation.php:1346 msgid "Share" msgstr "Teilen" #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:838 ../../Zotlabs/Module/Cdav.php:1128 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 #: ../../Zotlabs/Module/Admin/Accounts.php:173 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Thing.php:262 ../../Zotlabs/Module/Editblock.php:139 #: ../../Zotlabs/Module/Connections.php:268 -#: ../../Zotlabs/Module/Photos.php:1145 ../../Zotlabs/Module/Connedit.php:650 -#: ../../Zotlabs/Module/Connedit.php:937 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Photos.php:1150 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Group.php:179 #: ../../Zotlabs/Module/Profiles.php:803 #: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Lib/Apps.php:394 -#: ../../Zotlabs/Lib/ThreadItem.php:127 ../../Zotlabs/Storage/Browser.php:240 -#: ../../include/conversation.php:649 ../../include/conversation.php:686 +#: ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:400 +#: ../../Zotlabs/Lib/ThreadItem.php:131 ../../Zotlabs/Storage/Browser.php:240 +#: ../../include/conversation.php:674 ../../include/conversation.php:717 msgid "Delete" msgstr "Löschen" #: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Wiki.php:169 ../../Zotlabs/Module/Layouts.php:198 -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:59 +#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 #: ../../addon/gitwiki/Mod_Gitwiki.php:153 msgid "View" msgstr "Ansicht" @@ -366,10 +371,6 @@ msgid_plural "%d messages sent." msgstr[0] "%d Nachricht gesendet." msgstr[1] "%d Nachrichten gesendet." -#: ../../Zotlabs/Module/Invite.php:98 ../../Zotlabs/Lib/Apps.php:254 -msgid "Invite" -msgstr "Einladen" - #: ../../Zotlabs/Module/Invite.php:107 msgid "You have no more invitations available" msgstr "Du hast keine weiteren verfügbare Einladungen" @@ -423,7 +424,7 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../Zotlabs/Module/Admin/Site.php:273 #: ../../Zotlabs/Module/Admin/Profs.php:157 #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Security.php:104 @@ -433,24 +434,26 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../Zotlabs/Module/Settings/Tokens.php:168 #: ../../Zotlabs/Module/Settings/Account.php:118 #: ../../Zotlabs/Module/Settings/Featured.php:52 -#: ../../Zotlabs/Module/Settings/Display.php:203 +#: ../../Zotlabs/Module/Settings/Display.php:207 #: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Import.php:518 ../../Zotlabs/Module/Cal.php:343 +#: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 +#: ../../Zotlabs/Module/Import.php:529 ../../Zotlabs/Module/Cal.php:343 #: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:659 -#: ../../Zotlabs/Module/Photos.php:1024 ../../Zotlabs/Module/Photos.php:1064 -#: ../../Zotlabs/Module/Photos.php:1182 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Poke.php:200 -#: ../../Zotlabs/Module/Connedit.php:900 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Photos.php:1029 ../../Zotlabs/Module/Photos.php:1069 +#: ../../Zotlabs/Module/Photos.php:1187 ../../Zotlabs/Module/Wiki.php:206 +#: ../../Zotlabs/Module/Pdledit.php:94 ../../Zotlabs/Module/Poke.php:200 +#: ../../Zotlabs/Module/Connedit.php:904 ../../Zotlabs/Module/Chat.php:196 #: ../../Zotlabs/Module/Chat.php:242 ../../Zotlabs/Module/Pconfig.php:107 #: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 #: ../../Zotlabs/Module/Filestorage.php:155 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Lib/ThreadItem.php:730 +#: ../../Zotlabs/Lib/ThreadItem.php:743 #: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../view/theme/redbasic/php/config.php:95 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:226 +#: ../../Zotlabs/Widget/Wiki_pages.php:61 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:269 #: ../../addon/planets/planets.php:153 #: ../../addon/openclipatar/openclipatar.php:53 #: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 @@ -459,7 +462,7 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../addon/likebanner/likebanner.php:57 #: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 #: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:759 +#: ../../addon/diaspora/diaspora.php:807 #: ../../addon/gitwiki/Mod_Gitwiki.php:155 #: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/visage/visage.php:170 #: ../../addon/nsabait/nsabait.php:161 ../../addon/mailtest/mailtest.php:100 @@ -467,8 +470,8 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 #: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 #: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:96 ../../addon/chords/Mod_Chords.php:60 -#: ../../addon/libertree/libertree.php:85 +#: ../../addon/frphotos/frphotos.php:96 ../../addon/pubcrawl/pubcrawl.php:1049 +#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 #: ../../addon/flattrwidget/flattrwidget.php:124 #: ../../addon/statusnet/statusnet.php:322 #: ../../addon/statusnet/statusnet.php:380 @@ -486,7 +489,8 @@ msgstr "Absenden" #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 +#: ../../Zotlabs/Module/Card_edit.php:33 msgid "Item not found" msgstr "Element nicht gefunden" @@ -507,10 +511,10 @@ msgstr "Layout bearbeiten" #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 #: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Group.php:74 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Web/WebServer.php:130 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Web/WebServer.php:168 #: ../../addon/redphotos/redphotos.php:119 #: ../../addon/frphotos/frphotos.php:81 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:340 +#: ../../include/items.php:346 msgid "Permission denied" msgstr "Keine Berechtigung" @@ -522,7 +526,7 @@ msgstr "Ungültiger Profil-Identifikator" msgid "Profile Visibility Editor" msgstr "Profil-Sichtbarkeits-Editor" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1485 +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1585 msgid "Profile" msgstr "Profil" @@ -539,160 +543,153 @@ msgstr "Sichtbar für" msgid "All Connections" msgstr "Alle Verbindungen" -#: ../../Zotlabs/Module/Cdav.php:726 +#: ../../Zotlabs/Module/Cdav.php:785 msgid "INVALID EVENT DISMISSED!" msgstr "UNGÜLTIGEN TERMIN ABGELEHNT!" -#: ../../Zotlabs/Module/Cdav.php:727 +#: ../../Zotlabs/Module/Cdav.php:786 msgid "Summary: " msgstr "Zusammenfassung:" -#: ../../Zotlabs/Module/Cdav.php:727 ../../Zotlabs/Module/Cdav.php:728 -#: ../../Zotlabs/Module/Cdav.php:735 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:759 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/Apps.php:721 ../../Zotlabs/Lib/Apps.php:799 +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:764 ../../Zotlabs/Module/Photos.php:1220 +#: ../../Zotlabs/Lib/Apps.php:727 ../../Zotlabs/Lib/Apps.php:805 #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:86 -#: ../../Zotlabs/Widget/Album.php:84 ../../include/conversation.php:1107 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:841 +#: ../../include/conversation.php:1143 msgid "Unknown" msgstr "Unbekannt" -#: ../../Zotlabs/Module/Cdav.php:728 +#: ../../Zotlabs/Module/Cdav.php:787 msgid "Date: " msgstr "Datum:" -#: ../../Zotlabs/Module/Cdav.php:729 ../../Zotlabs/Module/Cdav.php:736 +#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 msgid "Reason: " msgstr "Grund:" -#: ../../Zotlabs/Module/Cdav.php:734 +#: ../../Zotlabs/Module/Cdav.php:793 msgid "INVALID CARD DISMISSED!" msgstr "UNGÜLTIGE KARTE ABGELEHNT!" -#: ../../Zotlabs/Module/Cdav.php:735 +#: ../../Zotlabs/Module/Cdav.php:794 msgid "Name: " msgstr "Name: " -#: ../../Zotlabs/Module/Cdav.php:768 -msgid "CalDAV" -msgstr "CalDAV" - -#: ../../Zotlabs/Module/Cdav.php:809 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 msgid "Event title" msgstr "Termintitel" -#: ../../Zotlabs/Module/Cdav.php:810 ../../Zotlabs/Module/Events.php:466 +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 msgid "Start date and time" msgstr "Startdatum und -zeit" -#: ../../Zotlabs/Module/Cdav.php:810 ../../Zotlabs/Module/Cdav.php:811 +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 msgid "Example: YYYY-MM-DD HH:mm" msgstr "Beispiel: JJJJ-MM-TT HH:mm" -#: ../../Zotlabs/Module/Cdav.php:811 +#: ../../Zotlabs/Module/Cdav.php:870 msgid "End date and time" msgstr "Enddatum und -zeit" -#: ../../Zotlabs/Module/Cdav.php:812 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 #: ../../Zotlabs/Module/Appman.php:138 ../../Zotlabs/Module/Rbmark.php:101 #: ../../addon/rendezvous/rendezvous.php:173 msgid "Description" msgstr "Beschreibung" -#: ../../Zotlabs/Module/Cdav.php:813 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 #: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:737 ../../Zotlabs/Module/Pubsites.php:51 +#: ../../Zotlabs/Module/Profiles.php:737 ../../Zotlabs/Module/Pubsites.php:52 #: ../../include/js_strings.php:25 msgid "Location" msgstr "Ort" -#: ../../Zotlabs/Module/Cdav.php:820 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 #: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:337 -#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Photos.php:913 +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Photos.php:918 msgid "Previous" msgstr "Voriges" -#: ../../Zotlabs/Module/Cdav.php:821 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 #: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 #: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Photos.php:922 +#: ../../Zotlabs/Module/Photos.php:927 msgid "Next" msgstr "Nächste" -#: ../../Zotlabs/Module/Cdav.php:822 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 #: ../../Zotlabs/Module/Cal.php:346 msgid "Today" msgstr "Heute" -#: ../../Zotlabs/Module/Cdav.php:823 ../../Zotlabs/Module/Events.php:695 +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 msgid "Month" msgstr "Monat" -#: ../../Zotlabs/Module/Cdav.php:824 ../../Zotlabs/Module/Events.php:696 +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 msgid "Week" msgstr "Woche" -#: ../../Zotlabs/Module/Cdav.php:825 ../../Zotlabs/Module/Events.php:697 +#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 msgid "Day" msgstr "Tag" -#: ../../Zotlabs/Module/Cdav.php:826 +#: ../../Zotlabs/Module/Cdav.php:885 msgid "List month" msgstr "Liste Monat" -#: ../../Zotlabs/Module/Cdav.php:827 +#: ../../Zotlabs/Module/Cdav.php:886 msgid "List week" msgstr "Liste Woche" -#: ../../Zotlabs/Module/Cdav.php:828 +#: ../../Zotlabs/Module/Cdav.php:887 msgid "List day" msgstr "Liste Tag" -#: ../../Zotlabs/Module/Cdav.php:835 +#: ../../Zotlabs/Module/Cdav.php:894 msgid "More" msgstr "Mehr" -#: ../../Zotlabs/Module/Cdav.php:836 +#: ../../Zotlabs/Module/Cdav.php:895 msgid "Less" msgstr "Weniger" -#: ../../Zotlabs/Module/Cdav.php:837 +#: ../../Zotlabs/Module/Cdav.php:896 msgid "Select calendar" msgstr "Kalender auswählen" -#: ../../Zotlabs/Module/Cdav.php:839 +#: ../../Zotlabs/Module/Cdav.php:898 msgid "Delete all" msgstr "Alles löschen" -#: ../../Zotlabs/Module/Cdav.php:840 ../../Zotlabs/Module/Cdav.php:1129 +#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 #: ../../Zotlabs/Module/Admin/Plugins.php:423 #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Wiki.php:290 ../../Zotlabs/Module/Wiki.php:316 -#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Wiki.php:333 ../../Zotlabs/Module/Wiki.php:363 +#: ../../Zotlabs/Module/Connedit.php:942 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 #: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 #: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/js_upload/js_upload.php:46 #: ../../addon/gitwiki/Mod_Gitwiki.php:244 -#: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1324 -#: ../../include/conversation.php:1373 +#: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1369 +#: ../../include/conversation.php:1418 msgid "Cancel" msgstr "Abbrechen" -#: ../../Zotlabs/Module/Cdav.php:841 +#: ../../Zotlabs/Module/Cdav.php:900 msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen ist leider noch nicht implementiert." -#: ../../Zotlabs/Module/Cdav.php:969 -msgid "CardDAV" -msgstr "CardDAV" - -#: ../../Zotlabs/Module/Cdav.php:1111 +#: ../../Zotlabs/Module/Cdav.php:1170 #: ../../Zotlabs/Module/Sharedwithme.php:105 #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:174 ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:539 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:924 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:554 #: ../../Zotlabs/Storage/Browser.php:234 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 @@ -700,123 +697,123 @@ msgstr "CardDAV" msgid "Name" msgstr "Name" -#: ../../Zotlabs/Module/Cdav.php:1112 ../../Zotlabs/Module/Connedit.php:921 +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:925 msgid "Organisation" msgstr "Organisation" -#: ../../Zotlabs/Module/Cdav.php:1113 ../../Zotlabs/Module/Connedit.php:922 +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:926 msgid "Title" msgstr "Titel" -#: ../../Zotlabs/Module/Cdav.php:1114 ../../Zotlabs/Module/Connedit.php:923 +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:927 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Phone" msgstr "Telefon" -#: ../../Zotlabs/Module/Cdav.php:1115 +#: ../../Zotlabs/Module/Cdav.php:1174 #: ../../Zotlabs/Module/Admin/Accounts.php:169 #: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Connedit.php:928 ../../Zotlabs/Module/Profiles.php:790 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1697 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1706 msgid "Email" msgstr "E-Mail" -#: ../../Zotlabs/Module/Cdav.php:1116 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:929 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Instant messenger" msgstr "Sofortnachrichtendienst" -#: ../../Zotlabs/Module/Cdav.php:1117 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:930 #: ../../Zotlabs/Module/Profiles.php:792 msgid "Website" msgstr "Webseite" -#: ../../Zotlabs/Module/Cdav.php:1118 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:927 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:793 msgid "Address" msgstr "Adresse" -#: ../../Zotlabs/Module/Cdav.php:1119 ../../Zotlabs/Module/Connedit.php:928 +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:932 #: ../../Zotlabs/Module/Profiles.php:794 msgid "Note" msgstr "Hinweis" -#: ../../Zotlabs/Module/Cdav.php:1120 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:933 #: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1290 -#: ../../include/connections.php:674 +#: ../../include/connections.php:682 msgid "Mobile" msgstr "Mobil" -#: ../../Zotlabs/Module/Cdav.php:1121 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:934 #: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1291 -#: ../../include/connections.php:675 +#: ../../include/connections.php:683 msgid "Home" msgstr "Home" -#: ../../Zotlabs/Module/Cdav.php:1122 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:935 #: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1294 -#: ../../include/connections.php:678 +#: ../../include/connections.php:686 msgid "Work" msgstr "Arbeit" -#: ../../Zotlabs/Module/Cdav.php:1124 ../../Zotlabs/Module/Connedit.php:933 +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:937 #: ../../Zotlabs/Module/Profiles.php:799 #: ../../addon/jappixmini/jappixmini.php:368 msgid "Add Contact" msgstr "Kontakt hinzufügen" -#: ../../Zotlabs/Module/Cdav.php:1125 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:938 #: ../../Zotlabs/Module/Profiles.php:800 msgid "Add Field" msgstr "Feld hinzufügen" -#: ../../Zotlabs/Module/Cdav.php:1127 +#: ../../Zotlabs/Module/Cdav.php:1186 #: ../../Zotlabs/Module/Admin/Plugins.php:453 #: ../../Zotlabs/Module/Settings/Oauth.php:42 #: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Lib/Apps.php:384 +#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:383 msgid "Update" msgstr "Aktualisieren" -#: ../../Zotlabs/Module/Cdav.php:1130 ../../Zotlabs/Module/Connedit.php:939 +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:943 msgid "P.O. Box" msgstr "Postfach" -#: ../../Zotlabs/Module/Cdav.php:1131 ../../Zotlabs/Module/Connedit.php:940 +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:944 msgid "Additional" msgstr "Zusätzlich" -#: ../../Zotlabs/Module/Cdav.php:1132 ../../Zotlabs/Module/Connedit.php:941 +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:945 msgid "Street" msgstr "Straße" -#: ../../Zotlabs/Module/Cdav.php:1133 ../../Zotlabs/Module/Connedit.php:942 +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:946 msgid "Locality" msgstr "Ortschaft" -#: ../../Zotlabs/Module/Cdav.php:1134 ../../Zotlabs/Module/Connedit.php:943 +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:947 msgid "Region" msgstr "Region" -#: ../../Zotlabs/Module/Cdav.php:1135 ../../Zotlabs/Module/Connedit.php:944 +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:948 msgid "ZIP Code" msgstr "Postleitzahl" -#: ../../Zotlabs/Module/Cdav.php:1136 ../../Zotlabs/Module/Connedit.php:945 +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:949 #: ../../Zotlabs/Module/Profiles.php:760 msgid "Country" msgstr "Land" -#: ../../Zotlabs/Module/Cdav.php:1183 +#: ../../Zotlabs/Module/Cdav.php:1242 msgid "Default Calendar" msgstr "Standardkalender" -#: ../../Zotlabs/Module/Cdav.php:1193 +#: ../../Zotlabs/Module/Cdav.php:1252 msgid "Default Addressbook" msgstr "Standardadressbuch" @@ -825,7 +822,7 @@ msgid "This site is not a directory server" msgstr "Diese Webseite ist kein Verzeichnisserver" #: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 -#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:403 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:431 msgid "You must be logged in to see this page." msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." @@ -839,20 +836,10 @@ msgstr "Beiträge und Kommentare" msgid "Only posts" msgstr "Nur Beiträge" -#: ../../Zotlabs/Module/Channel.php:97 ../../Zotlabs/Lib/Apps.php:240 -#: ../../include/nav.php:175 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../Zotlabs/Module/Channel.php:112 +#: ../../Zotlabs/Module/Channel.php:107 msgid "Insufficient permissions. Request redirected to profile page." msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../Zotlabs/Module/Lang.php:8 ../../Zotlabs/Lib/Apps.php:256 -#: ../../addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "Sprache" - #: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 msgid "Export Channel" msgstr "Kanal exportieren" @@ -913,16 +900,15 @@ msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du change theme settings" msgstr "Standard-System-Design – kann durch Nutzerprofile überschieben werden – Design-Einstellungen ändern" -#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Mobile system theme" msgstr "System-Design für mobile Geräte:" -#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:294 msgid "Allow Feeds as Connections" msgstr "Feeds als Verbindungen erlauben" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:294 msgid "(Heavy system resource usage)" msgstr "(führt zu hoher Systemlast)" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:295 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:295 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:296 msgid "Does this site allow new member registration?" msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:297 msgid "Invitation only" msgstr "Nur mit Einladung" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:297 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:298 msgid "Which best describes the types of account offered by this hub?" msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Register text" msgstr "Registrierungstext" -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Site homepage to show visitors (default: login box)" msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Preserve site homepage URL" msgstr "Homepage-URL schützen" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "Accounts abandoned after x days" msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Verify Email Addresses" msgstr "E-Mail-Adressen überprüfen" -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "Force publish" msgstr "Veröffentlichung erzwingen" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "Import Public Streams" msgstr "Öffentliche Beiträge importieren" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "Login on Homepage" msgstr "Log-in auf der Startseite" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Enable context help" msgstr "Kontext-Hilfe aktivieren" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Reply-to email address for system generated email." msgstr "Antwortadresse (reply-to) für Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Sender (From) email address for system generated email." msgstr "Absenderadresse (from) für Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Name of email sender for system generated email." msgstr "Name des Versenders von Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "Directory Server URL" msgstr "Verzeichnisserver-URL" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "Default directory server" msgstr "Standard-Verzeichnisserver" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Proxy user" msgstr "Proxy Benutzer" -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Network timeout" msgstr "Netzwerk-Timeout" -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../Zotlabs/Module/Admin/Site.php:317 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Delivery interval" msgstr "Auslieferung Intervall" -#: ../../Zotlabs/Module/Admin/Site.php:317 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Deliveries per process" msgstr "Zustellungen pro Prozess" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Path to ImageMagick convert program" +msgstr "Pfad zum ImageMagick-Programm convert" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "Maximum Load Average" msgstr "Maximales Load Average" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:324 msgid "Expiration period in days for imported (grid/network) content" msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:324 msgid "0 for no expiration of imported content" msgstr "0 = keine Löschung importierter Inhalte" @@ -3025,8 +3028,8 @@ msgstr "Zusätzliche Informationen (optional)" #: ../../Zotlabs/Module/Admin/Profs.php:74 #: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1022 -#: ../../include/text.php:1034 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1030 +#: ../../include/text.php:1042 msgid "Save" msgstr "Speichern" @@ -3225,16 +3228,16 @@ msgid "Visible to:" msgstr "Sichtbar für:" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:117 ../../include/acl_selectors.php:183 +#: ../../Zotlabs/Module/Acl.php:118 ../../include/acl_selectors.php:183 msgctxt "acl" msgid "Profile" msgstr "Profil" -#: ../../Zotlabs/Module/Moderate.php:37 +#: ../../Zotlabs/Module/Moderate.php:55 msgid "Comment approved" msgstr "Kommentar bestätigt" -#: ../../Zotlabs/Module/Moderate.php:41 +#: ../../Zotlabs/Module/Moderate.php:59 msgid "Comment deleted" msgstr "Kommentar gelöscht" @@ -3258,25 +3261,25 @@ msgstr "Name der Berechtigungsrolle" #: ../../Zotlabs/Module/Settings/Permcats.php:103 #: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Connedit.php:908 msgid "My Settings" msgstr "Meine Einstellungen" #: ../../Zotlabs/Module/Settings/Permcats.php:105 #: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:899 +#: ../../Zotlabs/Module/Connedit.php:903 msgid "inherited" msgstr "geerbt" #: ../../Zotlabs/Module/Settings/Permcats.php:108 #: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Connedit.php:910 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" #: ../../Zotlabs/Module/Settings/Permcats.php:109 #: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Connedit.php:911 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -3289,9 +3292,9 @@ msgstr "Einige Berechtigungen werden möglicherweise von den globalen privacy settings, which have higher " @@ -5469,18 +5525,14 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Connedit.php:913 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../Zotlabs/Module/Connedit.php:918 +#: ../../Zotlabs/Module/Connedit.php:922 msgid "Details" msgstr "Details" -#: ../../Zotlabs/Module/Chat.php:94 ../../Zotlabs/Lib/Apps.php:228 -msgid "My Chatrooms" -msgstr "Meine Chaträume" - #: ../../Zotlabs/Module/Chat.php:181 msgid "Room not found" msgstr "Chatraum nicht gefunden" @@ -5506,13 +5558,13 @@ msgid "Bookmark this room" msgstr "Lesezeichen für diesen Raum setzen" #: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1260 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1296 msgid "Please enter a link URL:" msgstr "Gib eine URL ein:" #: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:742 -#: ../../include/conversation.php:1370 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:757 +#: ../../include/conversation.php:1415 msgid "Encrypt text" msgstr "Text verschlüsseln" @@ -5545,9 +5597,14 @@ msgstr "Verfall" msgid "min" msgstr "min" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:242 +#: ../../include/conversation.php:1814 ../../include/nav.php:422 +msgid "Photos" +msgstr "Fotos" + #: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:237 -#: ../../Zotlabs/Storage/Browser.php:225 ../../Zotlabs/Storage/Browser.php:247 -#: ../../include/conversation.php:1788 ../../include/nav.php:386 +#: ../../Zotlabs/Storage/Browser.php:225 ../../include/conversation.php:1822 +#: ../../include/nav.php:430 msgid "Files" msgstr "Dateien" @@ -5587,7 +5644,7 @@ msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" msgid "Submit and proceed" msgstr "Absenden und fortfahren" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2281 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2289 msgid "Menus" msgstr "Menüs" @@ -5639,14 +5696,13 @@ msgstr "Menü Titel wie er von anderen gesehen wird" msgid "Allow bookmarks" msgstr "Erlaube Lesezeichen" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2282 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2290 msgid "Layouts" msgstr "Layouts" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Module/Help.php:18 -#: ../../Zotlabs/Lib/Apps.php:245 ../../include/nav.php:157 -#: ../../include/nav.php:264 ../../include/help.php:55 -#: ../../include/help.php:61 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:245 +#: ../../include/nav.php:201 ../../include/nav.php:301 +#: ../../include/help.php:68 ../../include/help.php:74 msgid "Help" msgstr "Hilfe" @@ -5663,12 +5719,12 @@ msgid "Download PDL file" msgstr "PDL-Datei herunterladen" #: ../../Zotlabs/Module/Tagger.php:55 ../../include/markdown.php:141 -#: ../../include/bbcode.php:334 +#: ../../include/bbcode.php:333 msgid "post" msgstr "Beitrag" #: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:146 -#: ../../include/text.php:1938 +#: ../../include/text.php:1946 msgid "comment" msgstr "Kommentar" @@ -5701,7 +5757,7 @@ msgid "Could not create privacy group." msgstr "Gruppe konnte nicht erstellt werden." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:3892 +#: ../../include/items.php:3941 msgid "Privacy group not found." msgstr "Gruppe nicht gefunden." @@ -5836,7 +5892,7 @@ msgid "View this profile" msgstr "Dieses Profil ansehen" #: ../../Zotlabs/Module/Profiles.php:728 ../../Zotlabs/Module/Profiles.php:827 -#: ../../include/channel.php:1183 +#: ../../include/channel.php:1284 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -5848,7 +5904,7 @@ msgstr "Profilwerkzeuge" msgid "Change cover photo" msgstr "Titelbild ändern" -#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1154 +#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1255 msgid "Change profile photo" msgstr "Profilfoto ändern" @@ -5868,7 +5924,7 @@ msgstr "Dieses Profil löschen" msgid "Add profile things" msgstr "Sachen zum Profil hinzufügen" -#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1654 +#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1688 msgid "Personal" msgstr "Persönlich" @@ -6013,12 +6069,12 @@ msgstr "Meine anderen Kanäle" msgid "Communications" msgstr "Kommunikation" -#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1179 +#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1280 msgid "Profile Image" msgstr "Profilfoto:" -#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1161 -#: ../../include/nav.php:105 +#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1262 +#: ../../include/nav.php:144 msgid "Edit Profiles" msgstr "Profile bearbeiten" @@ -6035,7 +6091,7 @@ msgid "Create a new channel" msgstr "Neuen Kanal anlegen" #: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:234 -#: ../../include/nav.php:199 +#: ../../include/nav.php:129 ../../include/nav.php:215 msgid "Channel Manager" msgstr "Kanal-Manager" @@ -6069,6 +6125,16 @@ msgstr "%d neue Vorstellungen" msgid "Delegated Channel" msgstr "Delegierte Kanäle" +#: ../../Zotlabs/Module/Cards.php:38 ../../Zotlabs/Module/Cards.php:178 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/conversation.php:1873 +#: ../../include/features.php:122 ../../include/nav.php:479 +msgid "Cards" +msgstr "Karten" + +#: ../../Zotlabs/Module/Cards.php:95 +msgid "Add Card" +msgstr "Karte hinzufügen" + #: ../../Zotlabs/Module/Dirsearch.php:33 msgid "This directory server requires an access token" msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" @@ -6120,7 +6186,7 @@ msgid "No ratings" msgstr "Keine Bewertungen" #: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1029 +#: ../../include/conversation.php:1065 msgid "Ratings" msgstr "Bewertungen" @@ -6136,12 +6202,6 @@ msgstr "Webseite: " msgid "Description: " msgstr "Beschreibung: " -#: ../../Zotlabs/Module/Webpages.php:38 ../../Zotlabs/Module/Webpages.php:237 -#: ../../Zotlabs/Lib/Apps.php:238 ../../include/conversation.php:1838 -#: ../../include/nav.php:435 -msgid "Webpages" -msgstr "Webseiten" - #: ../../Zotlabs/Module/Webpages.php:54 msgid "Import Webpage Elements" msgstr "Webseitenelemente importieren" @@ -6158,6 +6218,11 @@ msgstr "Webseitenelemente exportieren" msgid "Export selected" msgstr "Exportieren ausgewählt" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:238 +#: ../../include/conversation.php:1884 ../../include/nav.php:491 +msgid "Webpages" +msgstr "Webseiten" + #: ../../Zotlabs/Module/Webpages.php:248 msgid "Actions" msgstr "Aktionen" @@ -6190,11 +6255,44 @@ msgstr "Keine Webseitenelemente erkannt." msgid "Import complete." msgstr "Import abgeschlossen." +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account" +" password." +msgstr "Innerhalb von 48 Stunden nach einer Änderung des Konto-Passworts können Kanäle nicht umbenannt werden." + +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:209 +#: ../../include/channel.php:579 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." + +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:214 +#: ../../include/channel.php:584 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "Kanalname/-adresse ändern" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "Jegliche/alle Verbindungen zu anderen Netzwerken gehen verloren!" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "Neue Kanaladresse" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "Kanal umbenennen" + #: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 msgid "Item is not editable" msgstr "Element kann nicht bearbeitet werden." -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:140 +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:178 msgid "Edit post" msgstr "Bearbeite Beitrag" @@ -6255,7 +6353,7 @@ msgstr "Mail zugestellt" msgid "Delivery report for %1$s" msgstr "Zustellungsbericht für %1$s" -#: ../../Zotlabs/Module/Dreport.php:151 +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:60 msgid "Options" msgstr "Optionen" @@ -6280,7 +6378,7 @@ msgid "*" msgstr "*" #: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:209 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:218 msgid "Channel Sources" msgstr "Kanal-Quellen" @@ -6336,10 +6434,6 @@ msgstr "Quelle gelöscht" msgid "Unable to remove source." msgstr "Konnte die Quelle nicht löschen." -#: ../../Zotlabs/Module/Rpost.php:63 ../../Zotlabs/Lib/Apps.php:257 -msgid "Post" -msgstr "Beitrag schreiben" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Mögen/Nicht mögen" @@ -6375,13 +6469,14 @@ msgstr "Kanal nicht vorhanden." msgid "Previous action reversed." msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Like.php:423 ../../addon/diaspora/Receiver.php:1399 -#: ../../include/conversation.php:160 +#: ../../Zotlabs/Module/Like.php:423 ../../addon/diaspora/Receiver.php:1453 +#: ../../addon/pubcrawl/as.php:1323 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:425 ../../include/conversation.php:163 +#: ../../Zotlabs/Module/Like.php:425 ../../addon/pubcrawl/as.php:1325 +#: ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s nicht" @@ -6424,10 +6519,6 @@ msgstr "Aktion durchgeführt." msgid "Thank you." msgstr "Vielen Dank." -#: ../../Zotlabs/Module/Directory.php:80 ../../Zotlabs/Lib/Apps.php:244 -msgid "Directory" -msgstr "Verzeichnis" - #: ../../Zotlabs/Module/Directory.php:245 #, php-format msgid "%d rating" @@ -6447,11 +6538,11 @@ msgstr "Status:" msgid "Homepage: " msgstr "Webseite:" -#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1416 +#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1516 msgid "Age:" msgstr "Alter:" -#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1251 +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1352 #: ../../include/event.php:52 ../../include/event.php:84 msgid "Location:" msgstr "Ort:" @@ -6460,17 +6551,17 @@ msgstr "Ort:" msgid "Description:" msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1432 +#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1532 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1440 +#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1540 msgid "About:" msgstr "Über:" #: ../../Zotlabs/Module/Directory.php:328 ../../Zotlabs/Module/Suggest.php:56 #: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:999 ../../include/channel.php:1236 +#: ../../include/conversation.php:1035 ../../include/channel.php:1337 #: ../../include/connections.php:111 msgid "Connect" msgstr "Verbinden" @@ -6548,11 +6639,6 @@ msgstr "Xchan-Suche" msgid "Lookup xchan beginning with (or webbie): " msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Lib/Apps.php:232 -#: ../../include/features.php:333 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" - #: ../../Zotlabs/Module/Suggest.php:39 msgid "" "No suggestions available. If this is a new site, please try again in 24 " @@ -6587,11 +6673,6 @@ msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." msgid "Selected channel has private message restrictions. Send failed." msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." -#: ../../Zotlabs/Module/Mail.php:143 ../../Zotlabs/Lib/Apps.php:246 -#: ../../include/nav.php:187 -msgid "Mail" -msgstr "Mail" - #: ../../Zotlabs/Module/Mail.php:160 msgid "Messages" msgstr "Nachrichten" @@ -6629,7 +6710,7 @@ msgid "Subject:" msgstr "Betreff:" #: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -#: ../../include/conversation.php:1320 +#: ../../include/conversation.php:1365 msgid "Attach file" msgstr "Datei anhängen" @@ -6638,7 +6719,7 @@ msgid "Send" msgstr "Absenden" #: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1365 +#: ../../include/conversation.php:1410 msgid "Set expiration date" msgstr "Verfallsdatum" @@ -6710,7 +6791,7 @@ msgstr "Statistiken" msgid "Software" msgstr "Software" -#: ../../Zotlabs/Module/Pubsites.php:48 +#: ../../Zotlabs/Module/Pubsites.php:49 msgid "Rate" msgstr "Bewerten" @@ -6764,14 +6845,10 @@ msgstr "Gib einen Ordnernamen ein" msgid "or select an existing folder (doubleclick)" msgstr "oder wähle einen vorhanden Ordner aus (Doppelklick)" -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:137 +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:141 msgid "Save to Folder" msgstr "In Ordner speichern" -#: ../../Zotlabs/Module/Probe.php:11 ../../Zotlabs/Lib/Apps.php:231 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" - #: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 #, php-format msgid "Fetching URL returns error: %1$s" @@ -6860,8 +6937,8 @@ msgstr "ja" msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../Zotlabs/Module/Register.php:268 ../../boot.php:1582 -#: ../../include/nav.php:145 +#: ../../Zotlabs/Module/Register.php:268 ../../boot.php:1620 +#: ../../include/nav.php:189 msgid "Register" msgstr "Registrieren" @@ -6876,30 +6953,30 @@ msgstr "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Abs msgid "Cover Photos" msgstr "Cover Foto" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4320 msgid "female" msgstr "weiblich" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4274 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4321 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s hat ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4275 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4322 msgid "male" msgstr "männlich" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4276 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4323 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s hat sein %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4278 +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4325 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1878 +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1980 msgid "cover photo" msgstr "Cover Foto" @@ -6911,8 +6988,8 @@ msgstr "Cover Foto hochladen" msgid "Documentation Search" msgstr "Suche in der Dokumentation" -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1770 -#: ../../include/nav.php:368 +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1804 +#: ../../include/nav.php:412 msgid "About" msgstr "Über" @@ -6928,14 +7005,18 @@ msgstr "Entwickler" msgid "Tutorials" msgstr "Tutorials" -#: ../../Zotlabs/Module/Help.php:93 +#: ../../Zotlabs/Module/Help.php:95 msgid "$Projectname Documentation" msgstr "$Projectname-Dokumentation" -#: ../../Zotlabs/Module/Help.php:94 +#: ../../Zotlabs/Module/Help.php:96 msgid "Contents" msgstr "Inhalt" +#: ../../Zotlabs/Module/Display.php:340 +msgid "Item has been removed." +msgstr "Der Beitrag wurde entfernt." + #: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 msgid "Tag removed" msgstr "Schlagwort entfernt" @@ -6948,7 +7029,7 @@ msgstr "Schlagwort entfernen" msgid "Select a tag to remove: " msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Network.php:96 +#: ../../Zotlabs/Module/Network.php:97 msgid "No such group" msgstr "Gruppe nicht gefunden" @@ -6964,10 +7045,6 @@ msgstr "Forum" msgid "Search Results For:" msgstr "Suchergebnisse für:" -#: ../../Zotlabs/Module/Network.php:157 ../../Zotlabs/Lib/Apps.php:235 -msgid "Activity" -msgstr "Aktivität" - #: ../../Zotlabs/Module/Network.php:221 msgid "Privacy group is empty" msgstr "Gruppe ist leer" @@ -6984,14 +7061,10 @@ msgstr "Ungültige Verbindung." msgid "Invalid channel." msgstr "Ungültiger Kanal." -#: ../../Zotlabs/Module/Acl.php:344 +#: ../../Zotlabs/Module/Acl.php:351 msgid "network" msgstr "Netzwerk" -#: ../../Zotlabs/Module/Acl.php:354 -msgid "RSS" -msgstr "RSS" - #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 #: ../../addon/opensearch/opensearch.php:42 msgid "$Projectname" @@ -7051,14 +7124,14 @@ msgstr "Im geteilten Ordner Deiner Kontakte anzeigen" msgid "No channel." msgstr "Kein Kanal." -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" - -#: ../../Zotlabs/Module/Common.php:48 +#: ../../Zotlabs/Module/Common.php:45 msgid "No connections in common." msgstr "Keine gemeinsamen Verbindungen." +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "Zeige gemeinsame Verbindungen" + #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Keine Verbindungen." @@ -7149,6 +7222,10 @@ msgstr "Bewertung (öffentlich sichtbar)" msgid "Optionally explain your rating (this information is public)" msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "Karte bearbeiten" + #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." msgstr "Kein gültiges Konto gefunden." @@ -7173,7 +7250,7 @@ msgid "" "Password reset failed." msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1609 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1648 msgid "Password Reset" msgstr "Zurücksetzen des Kennworts" @@ -7218,12 +7295,8 @@ msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. msgid "Email Address" msgstr "E-Mail Adresse" -#: ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "Zurücksetzen" - #: ../../Zotlabs/Module/Notifications.php:43 -#: ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../Zotlabs/Lib/ThreadItem.php:397 msgid "Mark all seen" msgstr "Alle als gelesen markieren" @@ -7259,15 +7332,58 @@ msgstr "Hub-Administration" msgid "Report Bug" msgstr "Fehler melden" +#: ../../Zotlabs/Lib/Apps.php:227 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" + +#: ../../Zotlabs/Lib/Apps.php:228 +msgid "My Chatrooms" +msgstr "Meine Chaträume" + #: ../../Zotlabs/Lib/Apps.php:230 msgid "Firefox Share" msgstr "Teilen-Knopf für Firefox" -#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1601 -#: ../../include/nav.php:113 +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" + +#: ../../Zotlabs/Lib/Apps.php:232 ../../include/features.php:342 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1639 +#: ../../include/nav.php:153 ../../include/nav.php:157 msgid "Login" msgstr "Anmelden" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/nav.php:98 +msgid "Activity" +msgstr "Aktivität" + +#: ../../Zotlabs/Lib/Apps.php:239 ../../include/conversation.php:1900 +#: ../../include/features.php:95 ../../include/nav.php:507 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:240 ../../include/nav.php:102 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../Zotlabs/Lib/Apps.php:243 ../../include/conversation.php:1833 +#: ../../include/conversation.php:1836 ../../include/nav.php:124 +#: ../../include/nav.php:441 ../../include/nav.php:444 +msgid "Events" +msgstr "Termine" + +#: ../../Zotlabs/Lib/Apps.php:244 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../Zotlabs/Lib/Apps.php:246 ../../include/nav.php:116 +msgid "Mail" +msgstr "Mail" + #: ../../Zotlabs/Lib/Apps.php:249 msgid "Chat" msgstr "Chat" @@ -7284,29 +7400,41 @@ msgstr "Empfehlen" msgid "Random Channel" msgstr "Zufälliger Kanal" +#: ../../Zotlabs/Lib/Apps.php:254 +msgid "Invite" +msgstr "Einladen" + #: ../../Zotlabs/Lib/Apps.php:255 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "Funktionen" +#: ../../Zotlabs/Lib/Apps.php:256 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "Sprache" + +#: ../../Zotlabs/Lib/Apps.php:257 +msgid "Post" +msgstr "Beitrag schreiben" + #: ../../Zotlabs/Lib/Apps.php:258 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "Profilfoto" -#: ../../Zotlabs/Lib/Apps.php:391 +#: ../../Zotlabs/Lib/Apps.php:397 msgid "Purchase" msgstr "Kaufen" -#: ../../Zotlabs/Lib/Apps.php:395 +#: ../../Zotlabs/Lib/Apps.php:401 msgid "Undelete" msgstr "Wieder hergestellt" -#: ../../Zotlabs/Lib/Apps.php:401 +#: ../../Zotlabs/Lib/Apps.php:407 msgid "Add to app-tray" msgstr "Zum App-Menü hinzufügen" -#: ../../Zotlabs/Lib/Apps.php:402 +#: ../../Zotlabs/Lib/Apps.php:408 msgid "Remove from app-tray" msgstr "Aus dem App-Menü entfernen" @@ -7331,71 +7459,71 @@ msgid "publisher" msgstr "Autor" #: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:83 +#: ../../Zotlabs/Lib/NativeWikiPage.php:90 msgid "(No Title)" msgstr "(Kein Titel)" -#: ../../Zotlabs/Lib/NativeWikiPage.php:97 +#: ../../Zotlabs/Lib/NativeWikiPage.php:104 msgid "Wiki page create failed." msgstr "Anlegen der Wiki-Seite fehlgeschlagen." -#: ../../Zotlabs/Lib/NativeWikiPage.php:110 +#: ../../Zotlabs/Lib/NativeWikiPage.php:117 msgid "Wiki not found." msgstr "Wiki nicht gefunden." -#: ../../Zotlabs/Lib/NativeWikiPage.php:121 +#: ../../Zotlabs/Lib/NativeWikiPage.php:128 msgid "Destination name already exists" msgstr "Zielname bereits vorhanden" -#: ../../Zotlabs/Lib/NativeWikiPage.php:147 -#: ../../Zotlabs/Lib/NativeWikiPage.php:342 +#: ../../Zotlabs/Lib/NativeWikiPage.php:160 +#: ../../Zotlabs/Lib/NativeWikiPage.php:355 msgid "Page not found" msgstr "Seite nicht gefunden" -#: ../../Zotlabs/Lib/NativeWikiPage.php:177 +#: ../../Zotlabs/Lib/NativeWikiPage.php:191 msgid "Error reading page content" msgstr "Fehler beim Lesen des Seiteninhalts" -#: ../../Zotlabs/Lib/NativeWikiPage.php:333 -#: ../../Zotlabs/Lib/NativeWikiPage.php:381 -#: ../../Zotlabs/Lib/NativeWikiPage.php:448 -#: ../../Zotlabs/Lib/NativeWikiPage.php:489 +#: ../../Zotlabs/Lib/NativeWikiPage.php:347 +#: ../../Zotlabs/Lib/NativeWikiPage.php:396 +#: ../../Zotlabs/Lib/NativeWikiPage.php:463 +#: ../../Zotlabs/Lib/NativeWikiPage.php:504 msgid "Error reading wiki" msgstr "Fehler beim Lesen des Wiki" -#: ../../Zotlabs/Lib/NativeWikiPage.php:369 +#: ../../Zotlabs/Lib/NativeWikiPage.php:384 msgid "Page update failed." msgstr "Seitenaktualisierung fehlgeschlagen." -#: ../../Zotlabs/Lib/NativeWikiPage.php:403 +#: ../../Zotlabs/Lib/NativeWikiPage.php:418 msgid "Nothing deleted" msgstr "Nichts gelöscht" -#: ../../Zotlabs/Lib/NativeWikiPage.php:469 +#: ../../Zotlabs/Lib/NativeWikiPage.php:484 msgid "Compare: object not found." msgstr "Vergleichen: Objekt nicht gefunden." -#: ../../Zotlabs/Lib/NativeWikiPage.php:475 +#: ../../Zotlabs/Lib/NativeWikiPage.php:490 msgid "Page updated" msgstr "Seite aktualisiert" -#: ../../Zotlabs/Lib/NativeWikiPage.php:478 +#: ../../Zotlabs/Lib/NativeWikiPage.php:493 msgid "Untitled" msgstr "Ohne Titel" -#: ../../Zotlabs/Lib/NativeWikiPage.php:484 +#: ../../Zotlabs/Lib/NativeWikiPage.php:499 msgid "Wiki resource_id required for git commit" msgstr "Die resource_id des Wiki wird benötigt für den git commit." -#: ../../Zotlabs/Lib/NativeWikiPage.php:540 +#: ../../Zotlabs/Lib/NativeWikiPage.php:555 #: ../../Zotlabs/Widget/Wiki_page_history.php:23 msgctxt "wiki_history" msgid "Message" msgstr "Nachricht" -#: ../../Zotlabs/Lib/NativeWikiPage.php:578 -#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:667 -#: ../../include/bbcode.php:813 +#: ../../Zotlabs/Lib/NativeWikiPage.php:593 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:818 msgid "Different viewers will see this text differently" msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" @@ -7487,7 +7615,7 @@ msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" #: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:283 -#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:46 +#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "$projectname" @@ -7495,7 +7623,7 @@ msgstr "$projectname" msgid "Thank You," msgstr "Danke." -#: ../../Zotlabs/Lib/Enotify.php:65 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" @@ -7713,7 +7841,11 @@ msgstr "Neuer Beitrag wurde erzeugt" msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" -#: ../../Zotlabs/Lib/NativeWiki.php:128 +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "Wiki erfolgreich aktualisiert" + +#: ../../Zotlabs/Lib/NativeWiki.php:198 msgid "Wiki files deleted successfully" msgstr "Wiki-Dateien erfolgreich gelöscht" @@ -7727,210 +7859,218 @@ msgstr "Aktualisierungsfehler auf %s" msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../Zotlabs/Lib/ThreadItem.php:96 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:681 msgid "Private Message" msgstr "Private Nachricht" -#: ../../Zotlabs/Lib/ThreadItem.php:133 ../../include/conversation.php:648 +#: ../../Zotlabs/Lib/ThreadItem.php:137 ../../include/conversation.php:673 msgid "Select" msgstr "Auswählen" -#: ../../Zotlabs/Lib/ThreadItem.php:158 +#: ../../Zotlabs/Lib/ThreadItem.php:162 msgid "I will attend" msgstr "Ich werde teilnehmen" -#: ../../Zotlabs/Lib/ThreadItem.php:158 +#: ../../Zotlabs/Lib/ThreadItem.php:162 msgid "I will not attend" msgstr "Ich werde nicht teilnehmen" -#: ../../Zotlabs/Lib/ThreadItem.php:158 +#: ../../Zotlabs/Lib/ThreadItem.php:162 msgid "I might attend" msgstr "Ich werde vielleicht teilnehmen" -#: ../../Zotlabs/Lib/ThreadItem.php:168 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I agree" msgstr "Ich stimme zu" -#: ../../Zotlabs/Lib/ThreadItem.php:168 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I disagree" msgstr "Ich lehne ab" -#: ../../Zotlabs/Lib/ThreadItem.php:168 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I abstain" msgstr "Ich enthalte mich" -#: ../../Zotlabs/Lib/ThreadItem.php:224 +#: ../../Zotlabs/Lib/ThreadItem.php:228 msgid "Add Star" msgstr "Stern hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:225 +#: ../../Zotlabs/Lib/ThreadItem.php:229 msgid "Remove Star" msgstr "Stern entfernen" -#: ../../Zotlabs/Lib/ThreadItem.php:226 +#: ../../Zotlabs/Lib/ThreadItem.php:230 msgid "Toggle Star Status" msgstr "Markierungsstatus (Stern) umschalten" -#: ../../Zotlabs/Lib/ThreadItem.php:230 +#: ../../Zotlabs/Lib/ThreadItem.php:234 msgid "starred" msgstr "markiert" -#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:663 +#: ../../Zotlabs/Lib/ThreadItem.php:244 ../../include/conversation.php:688 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../Zotlabs/Lib/ThreadItem.php:241 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/ThreadItem.php:245 ../../include/conversation.php:689 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" -#: ../../Zotlabs/Lib/ThreadItem.php:249 +#: ../../Zotlabs/Lib/ThreadItem.php:253 msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:267 ../../include/taxonomy.php:355 +#: ../../Zotlabs/Lib/ThreadItem.php:271 ../../include/taxonomy.php:433 msgid "like" msgstr "mag" -#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:356 +#: ../../Zotlabs/Lib/ThreadItem.php:272 ../../include/taxonomy.php:434 msgid "dislike" msgstr "verurteile" -#: ../../Zotlabs/Lib/ThreadItem.php:272 +#: ../../Zotlabs/Lib/ThreadItem.php:276 msgid "Share This" msgstr "Teilen" -#: ../../Zotlabs/Lib/ThreadItem.php:272 +#: ../../Zotlabs/Lib/ThreadItem.php:276 msgid "share" msgstr "Teilen" -#: ../../Zotlabs/Lib/ThreadItem.php:281 +#: ../../Zotlabs/Lib/ThreadItem.php:285 msgid "Delivery Report" msgstr "Zustellungsbericht" -#: ../../Zotlabs/Lib/ThreadItem.php:299 +#: ../../Zotlabs/Lib/ThreadItem.php:303 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../Zotlabs/Lib/ThreadItem.php:328 ../../Zotlabs/Lib/ThreadItem.php:329 +#: ../../Zotlabs/Lib/ThreadItem.php:333 ../../Zotlabs/Lib/ThreadItem.php:334 #, php-format msgid "View %s's profile - %s" msgstr "Schaue Dir %ss Profil an – %s" -#: ../../Zotlabs/Lib/ThreadItem.php:332 +#: ../../Zotlabs/Lib/ThreadItem.php:337 msgid "to" msgstr "an" -#: ../../Zotlabs/Lib/ThreadItem.php:333 +#: ../../Zotlabs/Lib/ThreadItem.php:338 msgid "via" msgstr "via" -#: ../../Zotlabs/Lib/ThreadItem.php:334 +#: ../../Zotlabs/Lib/ThreadItem.php:339 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../Zotlabs/Lib/ThreadItem.php:335 +#: ../../Zotlabs/Lib/ThreadItem.php:340 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:715 +#: ../../Zotlabs/Lib/ThreadItem.php:353 ../../include/conversation.php:747 #, php-format msgid "from %s" msgstr "via %s" -#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:718 +#: ../../Zotlabs/Lib/ThreadItem.php:356 ../../include/conversation.php:750 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:357 ../../include/conversation.php:751 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:358 +#: ../../Zotlabs/Lib/ThreadItem.php:363 msgid "Attend" msgstr "Zusagen" -#: ../../Zotlabs/Lib/ThreadItem.php:359 +#: ../../Zotlabs/Lib/ThreadItem.php:364 msgid "Attendance Options" msgstr "Zusageoptionen" -#: ../../Zotlabs/Lib/ThreadItem.php:360 +#: ../../Zotlabs/Lib/ThreadItem.php:365 msgid "Vote" msgstr "Abstimmen" -#: ../../Zotlabs/Lib/ThreadItem.php:361 +#: ../../Zotlabs/Lib/ThreadItem.php:366 msgid "Voting Options" msgstr "Abstimmungsoptionen" -#: ../../Zotlabs/Lib/ThreadItem.php:382 +#: ../../Zotlabs/Lib/ThreadItem.php:387 #: ../../addon/bookmarker/bookmarker.php:38 msgid "Save Bookmarks" msgstr "Favoriten speichern" -#: ../../Zotlabs/Lib/ThreadItem.php:383 +#: ../../Zotlabs/Lib/ThreadItem.php:388 msgid "Add to Calendar" msgstr "Zum Kalender hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:441 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/ThreadItem.php:415 ../../include/conversation.php:471 +msgid "This is an unsaved preview" +msgstr "Dies ist eine nicht gespeicherte Vorschau" + +#: ../../Zotlabs/Lib/ThreadItem.php:447 ../../include/js_strings.php:7 #, php-format msgid "%s show all" msgstr "%s mehr anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:731 ../../include/conversation.php:1315 +#: ../../Zotlabs/Lib/ThreadItem.php:744 ../../include/conversation.php:1360 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1316 +#: ../../Zotlabs/Lib/ThreadItem.php:745 ../../include/conversation.php:1361 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1317 +#: ../../Zotlabs/Lib/ThreadItem.php:746 ../../include/conversation.php:1362 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1318 +#: ../../Zotlabs/Lib/ThreadItem.php:747 ../../include/conversation.php:1363 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:735 ../../include/conversation.php:1319 +#: ../../Zotlabs/Lib/ThreadItem.php:748 ../../include/conversation.php:1364 msgid "Code" msgstr "Code" -#: ../../Zotlabs/Lib/ThreadItem.php:736 +#: ../../Zotlabs/Lib/ThreadItem.php:749 msgid "Image" msgstr "Bild" -#: ../../Zotlabs/Lib/ThreadItem.php:737 +#: ../../Zotlabs/Lib/ThreadItem.php:750 +msgid "Attach File" +msgstr "Datei anhängen" + +#: ../../Zotlabs/Lib/ThreadItem.php:751 msgid "Insert Link" msgstr "Link einfügen" -#: ../../Zotlabs/Lib/ThreadItem.php:738 +#: ../../Zotlabs/Lib/ThreadItem.php:752 msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/ThreadItem.php:747 +#: ../../Zotlabs/Lib/ThreadItem.php:762 msgid "Your full name (required)" msgstr "Ihr vollständiger Name (erforderlich)" -#: ../../Zotlabs/Lib/ThreadItem.php:748 +#: ../../Zotlabs/Lib/ThreadItem.php:763 msgid "Your email address (required)" msgstr "Ihre E-Mail-Adresse (erforderlich)" -#: ../../Zotlabs/Lib/ThreadItem.php:749 +#: ../../Zotlabs/Lib/ThreadItem.php:764 msgid "Your website URL (optional)" msgstr "Ihre Webseiten-URL (optional)" -#: ../../Zotlabs/Zot/Auth.php:138 +#: ../../Zotlabs/Zot/Auth.php:152 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." -#: ../../Zotlabs/Zot/Auth.php:250 ../../addon/openid/Mod_Openid.php:76 +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 #: ../../addon/openid/Mod_Openid.php:178 #, php-format msgid "Welcome %s. Remote authentication successful." @@ -7940,7 +8080,7 @@ msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2692 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2707 msgid "Collection" msgstr "Sammlung" @@ -8087,12 +8227,14 @@ msgstr "Adressbuch zum Hineinimportieren auswählen" #: ../../Zotlabs/Widget/Appcategories.php:39 #: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:91 -#: ../../include/taxonomy.php:227 ../../include/taxonomy.php:309 +#: ../../include/contact_widgets.php:132 ../../include/taxonomy.php:285 +#: ../../include/taxonomy.php:367 ../../include/taxonomy.php:387 msgid "Categories" msgstr "Kategorien" #: ../../Zotlabs/Widget/Appcategories.php:42 ../../Zotlabs/Widget/Filer.php:31 #: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/contact_widgets.php:135 msgid "Everything" msgstr "Alles" @@ -8120,21 +8262,21 @@ msgstr "Private Nachrichten" msgid "Combined View" msgstr "Kombinierte Anzeige" -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:190 +#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:119 msgid "Inbox" msgstr "Eingang" -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:191 +#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:120 msgid "Outbox" msgstr "Ausgang" -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:192 +#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:121 msgid "New Message" msgstr "Neue Nachricht" #: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1813 ../../include/conversation.php:1816 -#: ../../include/nav.php:411 ../../include/nav.php:414 +#: ../../include/conversation.php:1847 ../../include/conversation.php:1850 +#: ../../include/nav.php:455 ../../include/nav.php:458 msgid "Chatrooms" msgstr "Chaträume" @@ -8216,7 +8358,7 @@ msgstr "Foto/Bild" msgid "Remove term" msgstr "Eintrag löschen" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:297 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:306 msgid "Saved Searches" msgstr "Gespeicherte Suchanfragen" @@ -8228,15 +8370,15 @@ msgstr "hinzufügen" msgid "Notes" msgstr "Notizen" -#: ../../Zotlabs/Widget/Wiki_pages.php:52 ../../addon/gitwiki/gitwiki.php:76 +#: ../../Zotlabs/Widget/Wiki_pages.php:47 ../../addon/gitwiki/gitwiki.php:76 msgid "Wiki Pages" msgstr "Wikiseiten" -#: ../../Zotlabs/Widget/Wiki_pages.php:58 ../../addon/gitwiki/gitwiki.php:81 +#: ../../Zotlabs/Widget/Wiki_pages.php:53 ../../addon/gitwiki/gitwiki.php:81 msgid "Add new page" msgstr "Neue Seite hinzufügen" -#: ../../Zotlabs/Widget/Wiki_pages.php:59 ../../addon/gitwiki/gitwiki.php:82 +#: ../../Zotlabs/Widget/Wiki_pages.php:58 ../../addon/gitwiki/gitwiki.php:82 msgid "Page name" msgstr "Seitenname" @@ -8257,7 +8399,7 @@ msgid "See more..." msgstr "Mehr anzeigen …" #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:386 +#: ../../include/features.php:395 msgid "Saved Folders" msgstr "Gespeicherte Ordner" @@ -8277,7 +8419,7 @@ msgstr "Warteschlange kontrollieren" msgid "DB updates" msgstr "DB-Aktualisierungen" -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:215 +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:224 msgid "Admin" msgstr "Administration" @@ -8317,7 +8459,7 @@ msgstr "Kanal exportieren" msgid "Connected apps" msgstr "Verbundene Apps" -#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:149 +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:158 msgid "Permission Groups" msgstr "Berechtigungsrollen" @@ -8329,151 +8471,289 @@ msgstr "Premium-Kanal-Einstellungen" msgid "Bookmarked Chatrooms" msgstr "Gespeicherte Chatrooms" +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Neue Netzwerk-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "Benachrichtigungen für neue Netzwerk-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:20 ../../include/nav.php:99 +msgid "View your network activity" +msgstr "Zeige Deine Netzwerk-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:24 +msgid "Mark all notifications read" +msgstr "Alle Benachrichtigungen als gesehen markieren" + +#: ../../Zotlabs/Widget/Notifications.php:32 +msgid "New Home Activity" +msgstr "Neue Kanal-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:33 +msgid "New Home Activity Notifications" +msgstr "Benachrichtigungen für neue Kanal-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "View your home activity" +msgstr "Zeige Deine Kanal-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:40 +#: ../../Zotlabs/Widget/Notifications.php:136 +msgid "Mark all notifications seen" +msgstr "Alle Benachrichtigungen als gesehen markieren" + +#: ../../Zotlabs/Widget/Notifications.php:48 +msgid "New Mails" +msgstr "Neue Mails" + +#: ../../Zotlabs/Widget/Notifications.php:49 +msgid "New Mails Notifications" +msgstr "Benachrichtigungen für neue Mails" + +#: ../../Zotlabs/Widget/Notifications.php:52 +msgid "View your private mails" +msgstr "Zeige Deine persönlichen Mails" + +#: ../../Zotlabs/Widget/Notifications.php:56 +msgid "Mark all messages seen" +msgstr "Alle Mails als gelesen markieren" + +#: ../../Zotlabs/Widget/Notifications.php:64 +msgid "New Events" +msgstr "Neue Termine" + +#: ../../Zotlabs/Widget/Notifications.php:65 +msgid "New Events Notifications" +msgstr "Benachrichtigungen für neue Termine" + +#: ../../Zotlabs/Widget/Notifications.php:68 ../../include/nav.php:125 +msgid "View events" +msgstr "Termine ansehen" + +#: ../../Zotlabs/Widget/Notifications.php:72 ../../include/nav.php:126 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../Zotlabs/Widget/Notifications.php:81 +msgid "New Connections Notifications" +msgstr "Benachrichtigungen für neue Verbindungen" + +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "View all connections" +msgstr "Zeige alle Verbindungen" + +#: ../../Zotlabs/Widget/Notifications.php:92 +msgid "New Files" +msgstr "Neue Dateien" + +#: ../../Zotlabs/Widget/Notifications.php:93 +msgid "New Files Notifications" +msgstr "Benachrichtigungen für neue Dateien" + +#: ../../Zotlabs/Widget/Notifications.php:100 +#: ../../Zotlabs/Widget/Notifications.php:101 ../../include/nav.php:112 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../Zotlabs/Widget/Notifications.php:104 +msgid "View all notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "Mark all notices seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:118 +msgid "New Registrations" +msgstr "Neue Registrierungen" + +#: ../../Zotlabs/Widget/Notifications.php:119 +msgid "New Registrations Notifications" +msgstr "Benachrichtigungen für neue Registrierungen" + +#: ../../Zotlabs/Widget/Notifications.php:129 +msgid "Public Stream Notifications" +msgstr "Benachrichtigungen für öffentlichen Beitrags-Stream" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "View the public stream" +msgstr "Zeige öffentlichen Beitrags-Stream" + +#: ../../Zotlabs/Widget/Notifications.php:143 +#: ../../include/conversation.php:871 ../../include/nav.php:305 +msgid "Loading..." +msgstr "Lädt ..." + #: ../../util/nconfig.php:34 msgid "Source channel not found." msgstr "Quellkanal nicht gefunden." -#: ../../boot.php:1581 +#: ../../boot.php:1619 msgid "Create an account to access services and applications" msgstr "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können." -#: ../../boot.php:1600 ../../include/nav.php:99 ../../include/nav.php:123 -#: ../../include/nav.php:140 +#: ../../boot.php:1638 ../../include/nav.php:138 ../../include/nav.php:167 +#: ../../include/nav.php:184 msgid "Logout" msgstr "Abmelden" -#: ../../boot.php:1603 +#: ../../boot.php:1642 msgid "Login/Email" msgstr "Anmelden/E-Mail" -#: ../../boot.php:1604 +#: ../../boot.php:1643 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1605 +#: ../../boot.php:1644 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1608 +#: ../../boot.php:1647 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2146 +#: ../../boot.php:2191 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" -#: ../../boot.php:2299 +#: ../../boot.php:2344 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Webseiten-SSL-Fehler für %s" -#: ../../boot.php:2304 +#: ../../boot.php:2349 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2423 +#: ../../boot.php:2468 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Cron-Jobs laufen nicht auf %s" -#: ../../boot.php:2428 +#: ../../boot.php:2473 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2429 ../../include/datetime.php:286 +#: ../../boot.php:2474 ../../include/datetime.php:286 msgid "never" msgstr "Nie" +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 #: ../../view/theme/redbasic/php/config.php:16 #: ../../view/theme/redbasic/php/config.php:19 msgid "Focus (Hubzilla default)" msgstr "Focus (Voreinstellung für Hubzilla)" -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:97 msgid "Theme settings" msgstr "Design-Einstellungen" -#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:98 msgid "Narrow navbar" msgstr "Schmale Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:99 msgid "Navigation bar background color" msgstr "Hintergrundfarbe der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:100 msgid "Navigation bar icon color " msgstr "Farbe für die Icons der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:101 msgid "Navigation bar active icon color " msgstr "Farbe für aktive Icons der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:102 msgid "Link color" msgstr "Linkfarbe" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Set font-color for banner" msgstr "Farbe der Schrift des Banners" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Set the background color" msgstr "Hintergrundfarbe" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Set the background image" msgstr "Hintergrundbild" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Set the background color of items" msgstr "Hintergrundfarbe für Beiträge" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Set the background color of comments" msgstr "Hintergrundfarbe für Kommentare" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Set font-size for the entire application" msgstr "Schriftgröße für die gesamte Anwendung" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Examples: 1rem, 100%, 16px" msgstr "Beispiele: 1rem, 100%, 16px" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Set font-color for posts and comments" msgstr "Schriftfarbe für Beiträge und Kommentare" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Set radius of corners" msgstr "Ecken-Radius" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Example: 4px" msgstr "Beispiel: 4px" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Set shadow depth of photos" msgstr "Schattentiefe von Fotos" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Set maximum width of content region in pixel" msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Leave empty for default width" msgstr "Leer lassen für Standardbreite" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic_c/php/config.php:115 msgid "Left align page content" msgstr "Seiteninhalt linksbündig anzeigen" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Set size of conversation author photo" msgstr "Größe der Avatare von Themenstartern" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" @@ -8615,30 +8895,30 @@ msgstr "Eine Einstellung" msgid "Skeleton Settings" msgstr "Skeleton Einstellungen" -#: ../../addon/gnusoc/gnusoc.php:200 +#: ../../addon/gnusoc/gnusoc.php:243 msgid "GNU-Social Protocol Settings updated." msgstr "GNU social Protokoll Einstellungen aktualisiert" -#: ../../addon/gnusoc/gnusoc.php:219 +#: ../../addon/gnusoc/gnusoc.php:262 msgid "" "The GNU-Social protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "Das GNU-Social-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." -#: ../../addon/gnusoc/gnusoc.php:222 +#: ../../addon/gnusoc/gnusoc.php:265 msgid "Enable the GNU-Social protocol for this channel" msgstr "Aktiviere das GNU social Protokoll für diesen Kanal" -#: ../../addon/gnusoc/gnusoc.php:226 +#: ../../addon/gnusoc/gnusoc.php:269 msgid "GNU-Social Protocol Settings" msgstr "GNU social Protokoll Einstellungen" -#: ../../addon/gnusoc/gnusoc.php:417 +#: ../../addon/gnusoc/gnusoc.php:460 msgid "Follow" msgstr "Folgen" -#: ../../addon/gnusoc/gnusoc.php:420 +#: ../../addon/gnusoc/gnusoc.php:463 #, php-format msgid "%1$s is now following %2$s" msgstr "%1$s folgt nun %2$s" @@ -8684,8 +8964,8 @@ msgstr "Zurückkehren nach" msgid "Page to load after image selection." msgstr "Die Seite, die nach Auswahl eines Bildes geladen werden soll." -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1165 -#: ../../include/nav.php:107 +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1266 +#: ../../include/nav.php:146 msgid "Edit Profile" msgstr "Profil bearbeiten" @@ -8758,6 +9038,10 @@ msgstr "Unbekannter Fehler. Bitte versuchen Sie es später erneut." msgid "Profile photo updated successfully." msgstr "Profilfoto erfolgreich aktualisiert." +#: ../../addon/zotvi/zot6.php:25 ../../include/zot.php:3983 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" + #: ../../addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "Nicht jugendfreie Fotos markieren" @@ -9219,17 +9503,17 @@ msgstr "Geburtsdatum" msgid "OpenID protocol error. No ID returned." msgstr "OpenID-Protokollfehler. Keine Kennung zurückgegeben." -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:286 +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:289 msgid "Login failed." msgstr "Login fehlgeschlagen." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1332 +#: ../../include/selectors.php:66 ../../include/channel.php:1432 msgid "Male" msgstr "Männlich" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1330 +#: ../../include/selectors.php:66 ../../include/channel.php:1430 msgid "Female" msgstr "Weiblich" @@ -9239,7 +9523,7 @@ msgstr "Gern geschehen." #: ../../addon/randpost/randpost.php:98 msgid "Ah shucks..." -msgstr "" +msgstr "Ach Mist..." #: ../../addon/randpost/randpost.php:99 msgid "Don't mention it." @@ -9416,39 +9700,39 @@ msgstr "" msgid "declared undying love for" msgstr "" -#: ../../addon/diaspora/diaspora.php:715 +#: ../../addon/diaspora/diaspora.php:763 msgid "Diaspora Protocol Settings updated." msgstr "Diaspora Protokoll Einstellungen aktualisiert" -#: ../../addon/diaspora/diaspora.php:734 +#: ../../addon/diaspora/diaspora.php:782 msgid "" "The Diaspora protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." -#: ../../addon/diaspora/diaspora.php:737 +#: ../../addon/diaspora/diaspora.php:785 msgid "Enable the Diaspora protocol for this channel" msgstr "Das Diaspora Protokoll für diesen Kanal aktivieren" -#: ../../addon/diaspora/diaspora.php:741 +#: ../../addon/diaspora/diaspora.php:789 msgid "Allow any Diaspora member to comment on your public posts" msgstr "Erlaube jedem Diaspora Nutzer deine öffentlichen Beiträge zu kommentieren" -#: ../../addon/diaspora/diaspora.php:745 +#: ../../addon/diaspora/diaspora.php:793 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Verhindern, dass Deine Hashtags zu anderen Seiten umgeleitet werden" -#: ../../addon/diaspora/diaspora.php:749 +#: ../../addon/diaspora/diaspora.php:797 msgid "" "Sign and forward posts and comments with no existing Diaspora signature" msgstr "Signieren und Weiterleiten von Beiträgen und Kommentaren ohne vorhandene Diaspora-Signatur" -#: ../../addon/diaspora/diaspora.php:754 +#: ../../addon/diaspora/diaspora.php:802 msgid "Followed hashtags (comma separated, do not include the #)" msgstr "Verfolgte Hashtags (Komma separierte Liste, ohne die #)" -#: ../../addon/diaspora/diaspora.php:759 +#: ../../addon/diaspora/diaspora.php:807 msgid "Diaspora Protocol Settings" msgstr "Diaspora Protokoll Einstellungen" @@ -9460,18 +9744,6 @@ msgstr "Es wurde kein Nutzername in der importierten Datei gefunden." msgid "Unable to create a unique channel address. Import failed." msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." -#: ../../addon/gitwiki/Mod_Gitwiki.php:107 -msgid "Error retrieving wiki" -msgstr "Fehler beim Abrufen des Wiki" - -#: ../../addon/gitwiki/Mod_Gitwiki.php:114 -msgid "Error creating zip file export folder" -msgstr "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses " - -#: ../../addon/gitwiki/Mod_Gitwiki.php:132 -msgid "Error downloading wiki: " -msgstr "Fehler beim Herunterladen des Wiki:" - #: ../../addon/testdrive/testdrive.php:104 #, php-format msgid "Your account on %s will expire in a few days." @@ -9509,12 +9781,72 @@ msgstr "PHP upload_max_filesize:" msgid "PHP post_max_size (must be larger than upload_max_filesize): " msgstr "PHP post_max_size (muss größer sein als upload_max_filesize):" -#: ../../addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "Kürzliche Kanal/Profil Besucher" +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "" -#: ../../addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "Standard-Profilfoto für diesen Hub" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "Information" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "" + +#: ../../addon/gravatar/gravatar.php:150 +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "" + +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "Kürzliche Kanal/Profil Besucher" + +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." msgstr "Dieses Plugin/Addon wurde noch nicht konfiguriert." #: ../../addon/visage/visage.php:99 @@ -9615,10 +9947,6 @@ msgstr "Markierung auf der Karte einschließen" msgid "Include a marker on the map." msgstr "Binde eine Markierung auf der Karte ein." -#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "Einstellungen speichern" - #: ../../addon/msgfooter/msgfooter.php:47 msgid "text to include in all outgoing posts from this site" msgstr "Test der in alle Beiträge angefügt werden soll, die von dieser Seite ausgehen" @@ -9659,8 +9987,8 @@ msgstr "Friendica-Passwort" msgid "Hubzilla to Friendica Post Settings" msgstr "Hubzilla-zu-Friendica Beitragseinstellungen" -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1256 -#: ../../include/channel.php:1419 +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1357 +#: ../../include/channel.php:1519 msgid "Status:" msgstr "Status:" @@ -9825,6 +10153,30 @@ msgstr "Friendica-Anmeldebenutzername" msgid "Friendica Login Password" msgstr "Friendica-Anmeldepasswort" +#: ../../addon/pubcrawl/as.php:1076 ../../addon/pubcrawl/as.php:1160 +#: ../../addon/pubcrawl/as.php:1332 ../../include/network.php:1705 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: ../../addon/pubcrawl/pubcrawl.php:1032 +msgid "ActivityPub Protocol Settings updated." +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1041 +msgid "" +"The ActivityPub protocol does not support location independence. Connections" +" you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1044 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1049 +msgid "ActivityPub Protocol Settings" +msgstr "" + #: ../../addon/donate/donate.php:21 msgid "Project Servers and Resources" msgstr "Projektserver und -ressourcen" @@ -10187,43 +10539,39 @@ msgstr "QR-Generator" msgid "Enter some text" msgstr "Etwas Text eingeben" -#: ../../addon/chess/chess.php:276 ../../addon/chess/chess.php:433 +#: ../../addon/chess/chess.php:278 ../../addon/chess/chess.php:465 msgid "Invalid game." msgstr "Ungültiges Spiel." -#: ../../addon/chess/chess.php:282 ../../addon/chess/chess.php:439 +#: ../../addon/chess/chess.php:284 ../../addon/chess/chess.php:471 msgid "You are not a player in this game." msgstr "Sie sind kein Spieler in diesem Spiel." -#: ../../addon/chess/chess.php:315 +#: ../../addon/chess/chess.php:340 msgid "You must be a local channel to create a game." msgstr "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein" -#: ../../addon/chess/chess.php:333 +#: ../../addon/chess/chess.php:358 msgid "You must select one opponent that is not yourself." msgstr "Du musst einen Gegner wählen, der nicht du selbst ist" -#: ../../addon/chess/chess.php:336 -msgid "Creating new game..." -msgstr "Neues Spiel wird erstellt..." - -#: ../../addon/chess/chess.php:342 +#: ../../addon/chess/chess.php:367 msgid "You must select white or black." msgstr "Sie müssen weiß oder schwarz auswählen." -#: ../../addon/chess/chess.php:349 +#: ../../addon/chess/chess.php:375 msgid "Error creating new game." msgstr "Fehler beim Erstellen eines neuen Spiels." -#: ../../addon/chess/chess.php:381 ../../include/channel.php:1016 +#: ../../addon/chess/chess.php:409 ../../include/channel.php:1117 msgid "Requested channel is not available." msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../addon/chess/chess.php:395 +#: ../../addon/chess/chess.php:423 msgid "You must select a local channel /chess/channelname" msgstr "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen" -#: ../../addon/chess/chess.php:923 +#: ../../addon/chess/chess.php:969 msgid "Enable notifications" msgstr "Benachrichtigungen aktivieren" @@ -10821,11 +11169,6 @@ msgstr "Datei" msgid "Send email to all members" msgstr "E-Mail an alle Mitglieder senden" -#: ../../addon/hubwall/hubwall.php:33 -#, php-format -msgid "$1%s Administrator" -msgstr "$1%s Administrator" - #: ../../addon/hubwall/hubwall.php:73 #, php-format msgid "%1$d of %2$d messages sent." @@ -10899,11 +11242,11 @@ msgstr "Transsexuell" msgid "Hermaphrodite" msgstr "Zwitter" -#: ../../include/selectors.php:49 ../../include/channel.php:1336 +#: ../../include/selectors.php:49 ../../include/channel.php:1436 msgid "Neuter" msgstr "Geschlechtslos" -#: ../../include/selectors.php:49 ../../include/channel.php:1338 +#: ../../include/selectors.php:49 ../../include/channel.php:1438 msgid "Non-specific" msgstr "unklar" @@ -11093,282 +11436,274 @@ msgstr "%1$s ist jetzt mit %2$s verbunden" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s an" -#: ../../include/conversation.php:239 ../../include/text.php:1096 -#: ../../include/text.php:1101 +#: ../../include/conversation.php:239 ../../include/text.php:1104 +#: ../../include/text.php:1109 msgid "poked" msgstr "stupste" -#: ../../include/conversation.php:688 +#: ../../include/conversation.php:720 #, php-format msgid "View %s's profile @ %s" msgstr "%ss Profil auf %s ansehen" -#: ../../include/conversation.php:708 +#: ../../include/conversation.php:740 msgid "Categories:" msgstr "Kategorien:" -#: ../../include/conversation.php:709 +#: ../../include/conversation.php:741 msgid "Filed under:" msgstr "Gespeichert unter:" -#: ../../include/conversation.php:734 +#: ../../include/conversation.php:766 msgid "View in context" msgstr "Im Zusammenhang anschauen" -#: ../../include/conversation.php:831 +#: ../../include/conversation.php:867 msgid "remove" msgstr "lösche" -#: ../../include/conversation.php:835 ../../include/nav.php:268 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/conversation.php:836 +#: ../../include/conversation.php:872 msgid "Delete Selected Items" msgstr "Lösche die ausgewählten Elemente" -#: ../../include/conversation.php:879 +#: ../../include/conversation.php:915 msgid "View Source" msgstr "Quelle anzeigen" -#: ../../include/conversation.php:889 +#: ../../include/conversation.php:925 msgid "Follow Thread" msgstr "Unterhaltung folgen" -#: ../../include/conversation.php:898 +#: ../../include/conversation.php:934 msgid "Unfollow Thread" msgstr "Unterhaltung nicht mehr folgen" -#: ../../include/conversation.php:989 +#: ../../include/conversation.php:1025 msgid "Activity/Posts" msgstr "Aktivitäten/Beiträge" -#: ../../include/conversation.php:1009 +#: ../../include/conversation.php:1045 msgid "Edit Connection" msgstr "Verbindung bearbeiten" -#: ../../include/conversation.php:1019 +#: ../../include/conversation.php:1055 msgid "Message" msgstr "Nachricht" -#: ../../include/conversation.php:1153 +#: ../../include/conversation.php:1189 #, php-format msgid "%s likes this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1153 +#: ../../include/conversation.php:1189 #, php-format msgid "%s doesn't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1157 +#: ../../include/conversation.php:1193 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d Person gefällt das." msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/conversation.php:1159 +#: ../../include/conversation.php:1195 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d Person gefällt das nicht." msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/conversation.php:1165 +#: ../../include/conversation.php:1201 msgid "and" msgstr "und" -#: ../../include/conversation.php:1168 +#: ../../include/conversation.php:1204 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] ", und %d andere" -#: ../../include/conversation.php:1169 +#: ../../include/conversation.php:1205 #, php-format msgid "%s like this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1169 +#: ../../include/conversation.php:1205 #, php-format msgid "%s don't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1212 +#: ../../include/conversation.php:1248 msgid "Set your location" msgstr "Standort" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1249 msgid "Clear browser location" msgstr "Browser-Standort löschen" -#: ../../include/conversation.php:1261 +#: ../../include/conversation.php:1297 msgid "Tag term:" msgstr "Schlagwort:" -#: ../../include/conversation.php:1262 +#: ../../include/conversation.php:1298 msgid "Where are you right now?" msgstr "Wo bist Du jetzt grade?" -#: ../../include/conversation.php:1267 +#: ../../include/conversation.php:1303 msgid "Choose a different album..." msgstr "Wählen Sie ein anderes Album aus..." -#: ../../include/conversation.php:1271 +#: ../../include/conversation.php:1307 msgid "Comments enabled" msgstr "Kommentare aktiviert" -#: ../../include/conversation.php:1272 +#: ../../include/conversation.php:1308 msgid "Comments disabled" msgstr "Kommentare deaktiviert" -#: ../../include/conversation.php:1310 +#: ../../include/conversation.php:1355 msgid "Page link name" msgstr "Link zur Seite" -#: ../../include/conversation.php:1313 +#: ../../include/conversation.php:1358 msgid "Post as" msgstr "Veröffentlichen als" -#: ../../include/conversation.php:1327 +#: ../../include/conversation.php:1372 msgid "Toggle voting" msgstr "Umfragewerkzeug aktivieren" -#: ../../include/conversation.php:1330 +#: ../../include/conversation.php:1375 msgid "Disable comments" msgstr "Kommentare deaktivieren" -#: ../../include/conversation.php:1331 +#: ../../include/conversation.php:1376 msgid "Toggle comments" msgstr "Kommentare umschalten" -#: ../../include/conversation.php:1339 +#: ../../include/conversation.php:1384 msgid "Categories (optional, comma-separated list)" msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/conversation.php:1362 +#: ../../include/conversation.php:1407 msgid "Other networks and post services" msgstr "Andere Netzwerke und Platformen" -#: ../../include/conversation.php:1368 +#: ../../include/conversation.php:1413 msgid "Set publish date" msgstr "Veröffentlichungsdatum festlegen" -#: ../../include/conversation.php:1631 -msgid "Discover" -msgstr "Entdecken" - -#: ../../include/conversation.php:1634 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" - -#: ../../include/conversation.php:1639 +#: ../../include/conversation.php:1673 msgid "Commented Order" msgstr "Neueste Kommentare" -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1676 msgid "Sort by Comment Date" msgstr "Nach Kommentardatum sortiert" -#: ../../include/conversation.php:1646 +#: ../../include/conversation.php:1680 msgid "Posted Order" msgstr "Neueste Beiträge" -#: ../../include/conversation.php:1649 +#: ../../include/conversation.php:1683 msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortiert" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1691 msgid "Posts that mention or involve you" msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/conversation.php:1666 +#: ../../include/conversation.php:1700 msgid "Activity Stream - by date" msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/conversation.php:1672 +#: ../../include/conversation.php:1706 msgid "Starred" msgstr "Markiert" -#: ../../include/conversation.php:1675 +#: ../../include/conversation.php:1709 msgid "Favourite Posts" msgstr "Markierte Beiträge" -#: ../../include/conversation.php:1682 +#: ../../include/conversation.php:1716 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1685 +#: ../../include/conversation.php:1719 msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1760 ../../include/nav.php:358 +#: ../../include/conversation.php:1794 ../../include/nav.php:402 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1773 ../../include/nav.php:371 +#: ../../include/conversation.php:1807 ../../include/nav.php:415 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1783 ../../include/nav.php:381 -#: ../../include/photos.php:525 +#: ../../include/conversation.php:1817 ../../include/nav.php:425 +#: ../../include/photos.php:600 msgid "Photo Albums" msgstr "Fotoalben" -#: ../../include/conversation.php:1791 ../../include/nav.php:389 +#: ../../include/conversation.php:1825 ../../include/nav.php:433 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1827 ../../include/nav.php:424 +#: ../../include/conversation.php:1862 ../../include/nav.php:468 msgid "Bookmarks" msgstr "Lesezeichen" -#: ../../include/conversation.php:1830 ../../include/nav.php:427 +#: ../../include/conversation.php:1865 ../../include/nav.php:471 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1841 ../../include/nav.php:438 +#: ../../include/conversation.php:1876 ../../include/nav.php:482 +msgid "View Cards" +msgstr "" + +#: ../../include/conversation.php:1887 ../../include/nav.php:494 msgid "View Webpages" msgstr "Webseiten anzeigen" -#: ../../include/conversation.php:1910 +#: ../../include/conversation.php:1956 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Zusage" msgstr[1] "Zusagen" -#: ../../include/conversation.php:1913 +#: ../../include/conversation.php:1959 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Absage" msgstr[1] "Absagen" -#: ../../include/conversation.php:1916 +#: ../../include/conversation.php:1962 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] " Unentschlossen" msgstr[1] "Unentschlossene" -#: ../../include/conversation.php:1919 +#: ../../include/conversation.php:1965 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Zustimmung" msgstr[1] "Zustimmungen" -#: ../../include/conversation.php:1922 +#: ../../include/conversation.php:1968 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Ablehnung" msgstr[1] "Ablehnungen" -#: ../../include/conversation.php:1925 +#: ../../include/conversation.php:1971 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -11429,328 +11764,340 @@ msgstr "älter" msgid "newer" msgstr "neuer" -#: ../../include/text.php:939 +#: ../../include/text.php:947 msgid "No connections" msgstr "Keine Verbindungen" -#: ../../include/text.php:964 +#: ../../include/text.php:972 #, php-format msgid "View all %s connections" msgstr "Alle Verbindungen von %s anzeigen" -#: ../../include/text.php:1096 ../../include/text.php:1101 +#: ../../include/text.php:1104 ../../include/text.php:1109 msgid "poke" msgstr "anstupsen" -#: ../../include/text.php:1102 +#: ../../include/text.php:1110 msgid "ping" msgstr "anpingen" -#: ../../include/text.php:1102 +#: ../../include/text.php:1110 msgid "pinged" msgstr "pingte" -#: ../../include/text.php:1103 +#: ../../include/text.php:1111 msgid "prod" msgstr "knuffen" -#: ../../include/text.php:1103 +#: ../../include/text.php:1111 msgid "prodded" msgstr "knuffte" -#: ../../include/text.php:1104 +#: ../../include/text.php:1112 msgid "slap" msgstr "ohrfeigen" -#: ../../include/text.php:1104 +#: ../../include/text.php:1112 msgid "slapped" msgstr "ohrfeigte" -#: ../../include/text.php:1105 +#: ../../include/text.php:1113 msgid "finger" msgstr "befummeln" -#: ../../include/text.php:1105 +#: ../../include/text.php:1113 msgid "fingered" msgstr "befummelte" -#: ../../include/text.php:1106 +#: ../../include/text.php:1114 msgid "rebuff" msgstr "eine Abfuhr erteilen" -#: ../../include/text.php:1106 +#: ../../include/text.php:1114 msgid "rebuffed" msgstr "zurückgewiesen" -#: ../../include/text.php:1118 +#: ../../include/text.php:1126 msgid "happy" msgstr "glücklich" -#: ../../include/text.php:1119 +#: ../../include/text.php:1127 msgid "sad" msgstr "traurig" -#: ../../include/text.php:1120 +#: ../../include/text.php:1128 msgid "mellow" msgstr "sanft" -#: ../../include/text.php:1121 +#: ../../include/text.php:1129 msgid "tired" msgstr "müde" -#: ../../include/text.php:1122 +#: ../../include/text.php:1130 msgid "perky" msgstr "frech" -#: ../../include/text.php:1123 +#: ../../include/text.php:1131 msgid "angry" msgstr "sauer" -#: ../../include/text.php:1124 +#: ../../include/text.php:1132 msgid "stupefied" msgstr "verblüfft" -#: ../../include/text.php:1125 +#: ../../include/text.php:1133 msgid "puzzled" msgstr "verwirrt" -#: ../../include/text.php:1126 +#: ../../include/text.php:1134 msgid "interested" msgstr "interessiert" -#: ../../include/text.php:1127 +#: ../../include/text.php:1135 msgid "bitter" msgstr "verbittert" -#: ../../include/text.php:1128 +#: ../../include/text.php:1136 msgid "cheerful" msgstr "fröhlich" -#: ../../include/text.php:1129 +#: ../../include/text.php:1137 msgid "alive" msgstr "lebendig" -#: ../../include/text.php:1130 +#: ../../include/text.php:1138 msgid "annoyed" msgstr "verärgert" -#: ../../include/text.php:1131 +#: ../../include/text.php:1139 msgid "anxious" msgstr "unruhig" -#: ../../include/text.php:1132 +#: ../../include/text.php:1140 msgid "cranky" msgstr "schrullig" -#: ../../include/text.php:1133 +#: ../../include/text.php:1141 msgid "disturbed" msgstr "verstört" -#: ../../include/text.php:1134 +#: ../../include/text.php:1142 msgid "frustrated" msgstr "frustriert" -#: ../../include/text.php:1135 +#: ../../include/text.php:1143 msgid "depressed" msgstr "deprimiert" -#: ../../include/text.php:1136 +#: ../../include/text.php:1144 msgid "motivated" msgstr "motiviert" -#: ../../include/text.php:1137 +#: ../../include/text.php:1145 msgid "relaxed" msgstr "entspannt" -#: ../../include/text.php:1138 +#: ../../include/text.php:1146 msgid "surprised" msgstr "überrascht" -#: ../../include/text.php:1312 ../../include/js_strings.php:70 +#: ../../include/text.php:1320 ../../include/js_strings.php:70 msgid "Monday" msgstr "Montag" -#: ../../include/text.php:1312 ../../include/js_strings.php:71 +#: ../../include/text.php:1320 ../../include/js_strings.php:71 msgid "Tuesday" msgstr "Dienstag" -#: ../../include/text.php:1312 ../../include/js_strings.php:72 +#: ../../include/text.php:1320 ../../include/js_strings.php:72 msgid "Wednesday" msgstr "Mittwoch" -#: ../../include/text.php:1312 ../../include/js_strings.php:73 +#: ../../include/text.php:1320 ../../include/js_strings.php:73 msgid "Thursday" msgstr "Donnerstag" -#: ../../include/text.php:1312 ../../include/js_strings.php:74 +#: ../../include/text.php:1320 ../../include/js_strings.php:74 msgid "Friday" msgstr "Freitag" -#: ../../include/text.php:1312 ../../include/js_strings.php:75 +#: ../../include/text.php:1320 ../../include/js_strings.php:75 msgid "Saturday" msgstr "Samstag" -#: ../../include/text.php:1312 ../../include/js_strings.php:69 +#: ../../include/text.php:1320 ../../include/js_strings.php:69 msgid "Sunday" msgstr "Sonntag" -#: ../../include/text.php:1316 ../../include/js_strings.php:45 +#: ../../include/text.php:1324 ../../include/js_strings.php:45 msgid "January" msgstr "Januar" -#: ../../include/text.php:1316 ../../include/js_strings.php:46 +#: ../../include/text.php:1324 ../../include/js_strings.php:46 msgid "February" msgstr "Februar" -#: ../../include/text.php:1316 ../../include/js_strings.php:47 +#: ../../include/text.php:1324 ../../include/js_strings.php:47 msgid "March" msgstr "März" -#: ../../include/text.php:1316 ../../include/js_strings.php:48 +#: ../../include/text.php:1324 ../../include/js_strings.php:48 msgid "April" msgstr "April" -#: ../../include/text.php:1316 +#: ../../include/text.php:1324 msgid "May" msgstr "Mai" -#: ../../include/text.php:1316 ../../include/js_strings.php:50 +#: ../../include/text.php:1324 ../../include/js_strings.php:50 msgid "June" msgstr "Juni" -#: ../../include/text.php:1316 ../../include/js_strings.php:51 +#: ../../include/text.php:1324 ../../include/js_strings.php:51 msgid "July" msgstr "Juli" -#: ../../include/text.php:1316 ../../include/js_strings.php:52 +#: ../../include/text.php:1324 ../../include/js_strings.php:52 msgid "August" msgstr "August" -#: ../../include/text.php:1316 ../../include/js_strings.php:53 +#: ../../include/text.php:1324 ../../include/js_strings.php:53 msgid "September" msgstr "September" -#: ../../include/text.php:1316 ../../include/js_strings.php:54 +#: ../../include/text.php:1324 ../../include/js_strings.php:54 msgid "October" msgstr "Oktober" -#: ../../include/text.php:1316 ../../include/js_strings.php:55 +#: ../../include/text.php:1324 ../../include/js_strings.php:55 msgid "November" msgstr "November" -#: ../../include/text.php:1316 ../../include/js_strings.php:56 +#: ../../include/text.php:1324 ../../include/js_strings.php:56 msgid "December" msgstr "Dezember" -#: ../../include/text.php:1380 ../../include/text.php:1384 +#: ../../include/text.php:1388 ../../include/text.php:1392 msgid "Unknown Attachment" msgstr "Unbekannter Anhang" -#: ../../include/text.php:1386 ../../include/feedutils.php:780 +#: ../../include/text.php:1394 ../../include/feedutils.php:780 msgid "unknown" msgstr "unbekannt" -#: ../../include/text.php:1422 +#: ../../include/text.php:1430 msgid "remove category" msgstr "Kategorie entfernen" -#: ../../include/text.php:1496 +#: ../../include/text.php:1504 msgid "remove from file" msgstr "aus der Datei entfernen" -#: ../../include/text.php:1615 ../../include/message.php:12 +#: ../../include/text.php:1623 ../../include/message.php:12 msgid "Download binary/encrypted content" msgstr "Binären/verschlüsselten Inhalt herunterladen" -#: ../../include/text.php:1774 ../../include/language.php:367 +#: ../../include/text.php:1782 ../../include/language.php:367 msgid "default" msgstr "Standard" -#: ../../include/text.php:1782 +#: ../../include/text.php:1790 msgid "Page layout" msgstr "Seiten-Layout" -#: ../../include/text.php:1782 +#: ../../include/text.php:1790 msgid "You can create your own with the layouts tool" msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" -#: ../../include/text.php:1810 +#: ../../include/text.php:1801 +msgid "HTML" +msgstr "" + +#: ../../include/text.php:1804 +msgid "Comanche Layout" +msgstr "" + +#: ../../include/text.php:1809 +msgid "PHP" +msgstr "" + +#: ../../include/text.php:1818 msgid "Page content type" msgstr "Art des Seiteninhalts" -#: ../../include/text.php:1943 +#: ../../include/text.php:1951 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:2006 -msgid "a-z, 0-9, -, _, and . only" -msgstr "nur a-z, 0-9, -, _, und ." +#: ../../include/text.php:2014 +msgid "a-z, 0-9, -, and _ only" +msgstr "" -#: ../../include/text.php:2277 +#: ../../include/text.php:2285 msgid "Design Tools" msgstr "Gestaltungswerkzeuge" -#: ../../include/text.php:2283 +#: ../../include/text.php:2291 msgid "Pages" msgstr "Seiten" -#: ../../include/text.php:2305 +#: ../../include/text.php:2313 msgid "Import website..." msgstr "Webseite importieren..." -#: ../../include/text.php:2306 +#: ../../include/text.php:2314 msgid "Select folder to import" msgstr "Ordner zum Importieren auswählen" -#: ../../include/text.php:2307 +#: ../../include/text.php:2315 msgid "Import from a zipped folder:" msgstr "Aus einem gezippten Ordner importieren:" -#: ../../include/text.php:2308 +#: ../../include/text.php:2316 msgid "Import from cloud files:" msgstr "Aus Cloud-Dateien importieren:" -#: ../../include/text.php:2309 +#: ../../include/text.php:2317 msgid "/cloud/channel/path/to/folder" msgstr "/Cloud/Kanal/Pfad/zum/Ordner" -#: ../../include/text.php:2310 +#: ../../include/text.php:2318 msgid "Enter path to website files" msgstr "Pfad zu Webseitendateien eingeben" -#: ../../include/text.php:2311 +#: ../../include/text.php:2319 msgid "Select folder" msgstr "Ordner auswählen" -#: ../../include/text.php:2312 +#: ../../include/text.php:2320 msgid "Export website..." msgstr "Webseite exportieren..." -#: ../../include/text.php:2313 +#: ../../include/text.php:2321 msgid "Export to a zip file" msgstr "In eine ZIP-Datei exportieren" -#: ../../include/text.php:2314 +#: ../../include/text.php:2322 msgid "website.zip" msgstr "website.zip" -#: ../../include/text.php:2315 +#: ../../include/text.php:2323 msgid "Enter a name for the zip file." msgstr "Geben Sie einen für die ZIP-Datei ein." -#: ../../include/text.php:2316 +#: ../../include/text.php:2324 msgid "Export to cloud files" msgstr "In Cloud-Dateien exportieren" -#: ../../include/text.php:2317 +#: ../../include/text.php:2325 msgid "/path/to/export/folder" msgstr "/Pfad/zum/exportierenden/Ordner" -#: ../../include/text.php:2318 +#: ../../include/text.php:2326 msgid "Enter a path to a cloud files destination." msgstr "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein." -#: ../../include/text.php:2319 +#: ../../include/text.php:2327 msgid "Specify folder" msgstr "Ordner angeben" @@ -11789,47 +12136,49 @@ msgstr "Lade Freunde ein" msgid "Advanced example: name=fred and country=iceland" msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" +#: ../../include/contact_widgets.php:166 +msgid "Common Connections" +msgstr "" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mehr zeigen" +#: ../../include/contact_widgets.php:171 +#, php-format +msgid "View all %d common connections" +msgstr "" -#: ../../include/markdown.php:139 ../../include/bbcode.php:332 +#: ../../include/markdown.php:139 ../../include/bbcode.php:337 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/follow.php:26 +#: ../../include/follow.php:37 msgid "Channel is blocked on this site." msgstr "Der Kanal ist auf dieser Seite blockiert " -#: ../../include/follow.php:31 +#: ../../include/follow.php:42 msgid "Channel location missing." msgstr "Adresse des Kanals fehlt." -#: ../../include/follow.php:73 +#: ../../include/follow.php:84 msgid "Response from remote channel was incomplete." msgstr "Antwort des entfernten Kanals war unvollständig." -#: ../../include/follow.php:90 +#: ../../include/follow.php:101 msgid "Channel was deleted and no longer exists." msgstr "Kanal wurde gelöscht und existiert nicht mehr." -#: ../../include/follow.php:140 ../../include/follow.php:175 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../include/follow.php:156 +msgid "Remote channel or protocol unavailable." +msgstr "" -#: ../../include/follow.php:163 +#: ../../include/follow.php:179 msgid "Channel discovery failed." msgstr "Kanalsuche fehlgeschlagen" -#: ../../include/follow.php:186 +#: ../../include/follow.php:191 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:202 msgid "Cannot connect to yourself." msgstr "Du kannst Dich nicht mit Dir selbst verbinden." @@ -12123,302 +12472,284 @@ msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." msgid "Item was not found." msgstr "Beitrag wurde nicht gefunden." -#: ../../include/attach.php:501 +#: ../../include/attach.php:505 msgid "No source file." msgstr "Keine Quelldatei." -#: ../../include/attach.php:523 +#: ../../include/attach.php:527 msgid "Cannot locate file to replace" msgstr "Kann Datei zum Ersetzen nicht finden" -#: ../../include/attach.php:541 +#: ../../include/attach.php:545 msgid "Cannot locate file to revise/update" msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" -#: ../../include/attach.php:674 +#: ../../include/attach.php:680 #, php-format msgid "File exceeds size limit of %d" msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/attach.php:688 +#: ../../include/attach.php:694 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." -#: ../../include/attach.php:858 +#: ../../include/attach.php:864 msgid "File upload failed. Possible system limit or action terminated." msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." -#: ../../include/attach.php:871 +#: ../../include/attach.php:877 msgid "Stored file could not be verified. Upload failed." msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../include/attach.php:932 ../../include/attach.php:948 +#: ../../include/attach.php:938 ../../include/attach.php:954 msgid "Path not available." msgstr "Pfad nicht verfügbar." -#: ../../include/attach.php:997 ../../include/attach.php:1162 +#: ../../include/attach.php:1003 ../../include/attach.php:1168 msgid "Empty pathname" msgstr "Leere Pfadangabe" -#: ../../include/attach.php:1023 +#: ../../include/attach.php:1029 msgid "duplicate filename or path" msgstr "doppelter Dateiname oder Pfad" -#: ../../include/attach.php:1048 +#: ../../include/attach.php:1054 msgid "Path not found." msgstr "Pfad nicht gefunden." -#: ../../include/attach.php:1116 +#: ../../include/attach.php:1122 msgid "mkdir failed." msgstr "mkdir fehlgeschlagen." -#: ../../include/attach.php:1120 +#: ../../include/attach.php:1126 msgid "database storage failed." msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/attach.php:1168 +#: ../../include/attach.php:1174 msgid "Empty path" msgstr "Leere Pfadangabe" -#: ../../include/security.php:117 -msgid "guest:" -msgstr "Gast:" - #: ../../include/security.php:531 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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/items.php:851 ../../include/items.php:903 +#: ../../include/items.php:857 ../../include/items.php:909 msgid "(Unknown)" msgstr "(Unbekannt)" -#: ../../include/items.php:1087 +#: ../../include/items.php:1093 msgid "Visible to anybody on the internet." msgstr "Für jeden im Internet sichtbar." -#: ../../include/items.php:1089 +#: ../../include/items.php:1095 msgid "Visible to you only." msgstr "Nur für Dich sichtbar." -#: ../../include/items.php:1091 +#: ../../include/items.php:1097 msgid "Visible to anybody in this network." msgstr "Für jedes $Projectname-Mitglied sichtbar." -#: ../../include/items.php:1093 +#: ../../include/items.php:1099 msgid "Visible to anybody authenticated." msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/items.php:1095 +#: ../../include/items.php:1101 #, php-format msgid "Visible to anybody on %s." msgstr "Für jeden auf %s sichtbar." -#: ../../include/items.php:1097 +#: ../../include/items.php:1103 msgid "Visible to all connections." msgstr "Für alle Verbindungen sichtbar." -#: ../../include/items.php:1099 +#: ../../include/items.php:1105 msgid "Visible to approved connections." msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/items.php:1101 +#: ../../include/items.php:1107 msgid "Visible to specific connections." msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/items.php:3908 +#: ../../include/items.php:3957 msgid "Privacy group is empty." msgstr "Gruppe ist leer." -#: ../../include/items.php:3915 +#: ../../include/items.php:3964 #, php-format msgid "Privacy group: %s" msgstr "Gruppe: %s" -#: ../../include/items.php:3927 +#: ../../include/items.php:3976 msgid "Connection not found." msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/items.php:4280 +#: ../../include/items.php:4327 msgid "profile photo" msgstr "Profilfoto" -#: ../../include/items.php:4473 +#: ../../include/items.php:4520 #, php-format msgid "[Edited %s]" msgstr "[%s wurde bearbeitet]" -#: ../../include/items.php:4473 +#: ../../include/items.php:4520 msgctxt "edit_activity" msgid "Post" msgstr "Beitrag" -#: ../../include/items.php:4473 +#: ../../include/items.php:4520 msgctxt "edit_activity" msgid "Comment" msgstr "Kommentar" -#: ../../include/channel.php:33 +#: ../../include/channel.php:34 msgid "Unable to obtain identity information from database" msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/channel.php:68 +#: ../../include/channel.php:69 msgid "Empty name" msgstr "Namensfeld leer" -#: ../../include/channel.php:71 +#: ../../include/channel.php:72 msgid "Name too long" msgstr "Name ist zu lang" -#: ../../include/channel.php:182 +#: ../../include/channel.php:183 msgid "No account identifier" msgstr "Keine Account-Kennung" -#: ../../include/channel.php:194 +#: ../../include/channel.php:195 msgid "Nickname is required." msgstr "Spitzname ist erforderlich." -#: ../../include/channel.php:208 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." - -#: ../../include/channel.php:213 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." - -#: ../../include/channel.php:272 +#: ../../include/channel.php:273 msgid "Unable to retrieve created identity" msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/channel.php:344 +#: ../../include/channel.php:359 msgid "Default Profile" msgstr "Standard-Profil" -#: ../../include/channel.php:497 +#: ../../include/channel.php:512 ../../include/channel.php:601 msgid "Unable to retrieve modified identity" msgstr "Geänderte Identität kann nicht empfangen werden" -#: ../../include/channel.php:1162 +#: ../../include/channel.php:1263 msgid "Create New Profile" msgstr "Neues Profil erstellen" -#: ../../include/channel.php:1182 +#: ../../include/channel.php:1283 msgid "Visible to everybody" msgstr "Für jeden sichtbar" -#: ../../include/channel.php:1255 ../../include/channel.php:1375 +#: ../../include/channel.php:1356 ../../include/channel.php:1475 msgid "Gender:" msgstr "Geschlecht:" -#: ../../include/channel.php:1257 ../../include/channel.php:1430 +#: ../../include/channel.php:1358 ../../include/channel.php:1530 msgid "Homepage:" msgstr "Homepage:" -#: ../../include/channel.php:1258 +#: ../../include/channel.php:1359 msgid "Online Now" msgstr "gerade online" -#: ../../include/channel.php:1334 +#: ../../include/channel.php:1434 msgid "Trans" msgstr "" -#: ../../include/channel.php:1380 +#: ../../include/channel.php:1480 msgid "Like this channel" msgstr "Dieser Kanal gefällt mir" -#: ../../include/channel.php:1404 +#: ../../include/channel.php:1504 msgid "j F, Y" msgstr "j. F Y" -#: ../../include/channel.php:1405 +#: ../../include/channel.php:1505 msgid "j F" msgstr "j. F" -#: ../../include/channel.php:1412 +#: ../../include/channel.php:1512 msgid "Birthday:" msgstr "Geburtstag:" -#: ../../include/channel.php:1425 +#: ../../include/channel.php:1525 #, php-format msgid "for %1$d %2$s" msgstr "seit %1$d %2$s" -#: ../../include/channel.php:1428 +#: ../../include/channel.php:1528 msgid "Sexual Preference:" msgstr "Sexuelle Orientierung:" -#: ../../include/channel.php:1434 +#: ../../include/channel.php:1534 msgid "Tags:" msgstr "Schlagworte:" -#: ../../include/channel.php:1436 +#: ../../include/channel.php:1536 msgid "Political Views:" msgstr "Politische Ansichten:" -#: ../../include/channel.php:1438 +#: ../../include/channel.php:1538 msgid "Religion:" msgstr "Religion:" -#: ../../include/channel.php:1442 +#: ../../include/channel.php:1542 msgid "Hobbies/Interests:" msgstr "Hobbys/Interessen:" -#: ../../include/channel.php:1444 +#: ../../include/channel.php:1544 msgid "Likes:" msgstr "Gefällt:" -#: ../../include/channel.php:1446 +#: ../../include/channel.php:1546 msgid "Dislikes:" msgstr "Gefällt nicht:" -#: ../../include/channel.php:1448 +#: ../../include/channel.php:1548 msgid "Contact information and Social Networks:" msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/channel.php:1450 +#: ../../include/channel.php:1550 msgid "My other channels:" msgstr "Meine anderen Kanäle:" -#: ../../include/channel.php:1452 +#: ../../include/channel.php:1552 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: ../../include/channel.php:1454 +#: ../../include/channel.php:1554 msgid "Books, literature:" msgstr "Bücher, Literatur:" -#: ../../include/channel.php:1456 +#: ../../include/channel.php:1556 msgid "Television:" msgstr "Fernsehen:" -#: ../../include/channel.php:1458 +#: ../../include/channel.php:1558 msgid "Film/dance/culture/entertainment:" msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/channel.php:1460 +#: ../../include/channel.php:1560 msgid "Love/Romance:" msgstr "Liebe/Romantik:" -#: ../../include/channel.php:1462 +#: ../../include/channel.php:1562 msgid "Work/employment:" msgstr "Arbeit/Anstellung:" -#: ../../include/channel.php:1464 +#: ../../include/channel.php:1564 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: ../../include/channel.php:1487 +#: ../../include/channel.php:1587 msgid "Like this thing" msgstr "Gefällt mir" -#: ../../include/channel.php:2256 -#, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" - #: ../../include/event.php:22 ../../include/event.php:69 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y, H:i" @@ -12455,67 +12786,63 @@ msgstr "In Bearbeitung" msgid "Cancelled" msgstr "gestrichen" -#: ../../include/event.php:1292 ../../include/connections.php:676 +#: ../../include/event.php:1292 ../../include/connections.php:684 msgid "Home, Voice" msgstr "Zuhause, Sprache" -#: ../../include/event.php:1293 ../../include/connections.php:677 +#: ../../include/event.php:1293 ../../include/connections.php:685 msgid "Home, Fax" msgstr "Zuhause, Fax" -#: ../../include/event.php:1295 ../../include/connections.php:679 +#: ../../include/event.php:1295 ../../include/connections.php:687 msgid "Work, Voice" msgstr "Arbeit, Sprache" -#: ../../include/event.php:1296 ../../include/connections.php:680 +#: ../../include/event.php:1296 ../../include/connections.php:688 msgid "Work, Fax" msgstr "Arbeit, Fax" -#: ../../include/network.php:751 +#: ../../include/network.php:752 msgid "view full size" msgstr "In Vollbildansicht anschauen" -#: ../../include/network.php:1691 ../../include/network.php:1692 +#: ../../include/network.php:1700 ../../include/network.php:1701 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1693 +#: ../../include/network.php:1702 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1694 +#: ../../include/network.php:1703 msgid "GNU-Social" msgstr "GNU-Social" -#: ../../include/network.php:1695 +#: ../../include/network.php:1704 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1696 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: ../../include/network.php:1698 +#: ../../include/network.php:1707 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1699 +#: ../../include/network.php:1708 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1700 +#: ../../include/network.php:1709 msgid "Zot" msgstr "Zot!" -#: ../../include/network.php:1701 +#: ../../include/network.php:1710 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1702 +#: ../../include/network.php:1711 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1703 +#: ../../include/network.php:1712 msgid "MySpace" msgstr "MySpace" @@ -12557,17 +12884,17 @@ msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/bbcode.php:194 ../../include/bbcode.php:1097 -#: ../../include/bbcode.php:1100 ../../include/bbcode.php:1105 -#: ../../include/bbcode.php:1108 ../../include/bbcode.php:1111 -#: ../../include/bbcode.php:1114 ../../include/bbcode.php:1119 -#: ../../include/bbcode.php:1122 ../../include/bbcode.php:1127 -#: ../../include/bbcode.php:1130 ../../include/bbcode.php:1133 -#: ../../include/bbcode.php:1136 +#: ../../include/bbcode.php:194 ../../include/bbcode.php:1102 +#: ../../include/bbcode.php:1105 ../../include/bbcode.php:1110 +#: ../../include/bbcode.php:1113 ../../include/bbcode.php:1116 +#: ../../include/bbcode.php:1119 ../../include/bbcode.php:1124 +#: ../../include/bbcode.php:1127 ../../include/bbcode.php:1132 +#: ../../include/bbcode.php:1135 ../../include/bbcode.php:1138 +#: ../../include/bbcode.php:1141 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:1147 +#: ../../include/bbcode.php:233 ../../include/bbcode.php:1152 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" @@ -12583,34 +12910,43 @@ msgid "" "to install it on this site." msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." -#: ../../include/bbcode.php:409 ../../include/bbcode.php:417 +#: ../../include/bbcode.php:331 +msgid "card" +msgstr "Karte" + +#: ../../include/bbcode.php:414 ../../include/bbcode.php:422 msgid "Click to open/close" msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/bbcode.php:417 +#: ../../include/bbcode.php:422 msgid "spoiler" msgstr "Spoiler" -#: ../../include/bbcode.php:1085 +#: ../../include/bbcode.php:1090 msgid "$1 wrote:" msgstr "$1 schrieb:" -#: ../../include/oembed.php:317 +#: ../../include/oembed.php:328 msgid " by " msgstr "von" -#: ../../include/oembed.php:318 +#: ../../include/oembed.php:329 msgid " on " msgstr "am" -#: ../../include/oembed.php:347 +#: ../../include/oembed.php:358 msgid "Embedded content" msgstr "Eingebetteter Inhalt" -#: ../../include/oembed.php:356 +#: ../../include/oembed.php:367 msgid "Embedding disabled" msgstr "Einbetten deaktiviert" +#: ../../include/zid.php:305 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + #: ../../include/features.php:54 msgid "General Features" msgstr "Allgemeine Funktionen" @@ -12659,292 +12995,296 @@ msgstr "Private Notizen" msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" -#: ../../include/features.php:122 +#: ../../include/features.php:123 +msgid "Create personal planning cards" +msgstr "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken" + +#: ../../include/features.php:131 msgid "Navigation Channel Select" msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/features.php:123 +#: ../../include/features.php:132 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../include/features.php:131 +#: ../../include/features.php:140 msgid "Photo Location" msgstr "Aufnahmeort" -#: ../../include/features.php:132 +#: ../../include/features.php:141 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" -#: ../../include/features.php:140 +#: ../../include/features.php:149 msgid "Access Controlled Chatrooms" msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/features.php:141 +#: ../../include/features.php:150 msgid "Provide chatrooms and chat services with access control." msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../include/features.php:150 +#: ../../include/features.php:159 msgid "Provide alternate connection permission roles." msgstr "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung." -#: ../../include/features.php:158 +#: ../../include/features.php:167 msgid "Smart Birthdays" msgstr "Smarte Geburtstage" -#: ../../include/features.php:159 +#: ../../include/features.php:168 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." -#: ../../include/features.php:167 +#: ../../include/features.php:176 msgid "Event Timezone Selection" msgstr "Termin-Zeitzonenauswahl" -#: ../../include/features.php:168 +#: ../../include/features.php:177 msgid "Allow event creation in timezones other than your own." msgstr "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen." -#: ../../include/features.php:176 +#: ../../include/features.php:185 msgid "Advanced Directory Search" msgstr "Erweiterte Verzeichnissuche" -#: ../../include/features.php:177 +#: ../../include/features.php:186 msgid "Allows creation of complex directory search queries" msgstr "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen" -#: ../../include/features.php:185 +#: ../../include/features.php:194 msgid "Advanced Theme and Layout Settings" msgstr "Erweiterte Design- und Layout-Einstellungen" -#: ../../include/features.php:186 +#: ../../include/features.php:195 msgid "Allows fine tuning of themes and page layouts" msgstr "Erlaubt die Feineinstellung von Designs und Seitenlayouts" -#: ../../include/features.php:196 +#: ../../include/features.php:205 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:200 +#: ../../include/features.php:209 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:201 +#: ../../include/features.php:210 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/features.php:210 +#: ../../include/features.php:219 msgid "Automatically import channel content from other channels or feeds" msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/features.php:218 +#: ../../include/features.php:227 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:219 +#: ../../include/features.php:228 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" -#: ../../include/features.php:227 +#: ../../include/features.php:236 msgid "Enable Voting Tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:228 +#: ../../include/features.php:237 msgid "Provide a class of post which others can vote on" msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/features.php:236 +#: ../../include/features.php:245 msgid "Disable Comments" msgstr "Kommentare deaktivieren" -#: ../../include/features.php:237 +#: ../../include/features.php:246 msgid "Provide the option to disable comments for a post" msgstr "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten" -#: ../../include/features.php:245 +#: ../../include/features.php:254 msgid "Delayed Posting" msgstr "Verzögertes Senden" -#: ../../include/features.php:246 +#: ../../include/features.php:255 msgid "Allow posts to be published at a later date" msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" -#: ../../include/features.php:254 +#: ../../include/features.php:263 msgid "Content Expiration" msgstr "Verfall von Inhalten" -#: ../../include/features.php:255 +#: ../../include/features.php:264 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." -#: ../../include/features.php:263 +#: ../../include/features.php:272 msgid "Suppress Duplicate Posts/Comments" msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/features.php:264 +#: ../../include/features.php:273 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/features.php:275 +#: ../../include/features.php:284 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:279 +#: ../../include/features.php:288 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:280 +#: ../../include/features.php:289 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:288 ../../include/group.php:332 +#: ../../include/features.php:297 ../../include/group.php:332 msgid "Privacy Groups" msgstr "Gruppen" -#: ../../include/features.php:289 +#: ../../include/features.php:298 msgid "Enable management and selection of privacy groups" msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" -#: ../../include/features.php:298 +#: ../../include/features.php:307 msgid "Save search terms for re-use" msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/features.php:306 +#: ../../include/features.php:315 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:307 +#: ../../include/features.php:316 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" -#: ../../include/features.php:315 +#: ../../include/features.php:324 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:316 +#: ../../include/features.php:325 msgid "Enable tab to display all new Network activity" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" -#: ../../include/features.php:324 +#: ../../include/features.php:333 msgid "Affinity Tool" msgstr "Beziehungs-Tool" -#: ../../include/features.php:325 +#: ../../include/features.php:334 msgid "Filter stream activity by depth of relationships" msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" -#: ../../include/features.php:334 +#: ../../include/features.php:343 msgid "Show friend and connection suggestions" msgstr "Freund- und Verbindungsvorschläge anzeigen" -#: ../../include/features.php:342 +#: ../../include/features.php:351 msgid "Connection Filtering" msgstr "Filter für Verbindungen" -#: ../../include/features.php:343 +#: ../../include/features.php:352 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" -#: ../../include/features.php:355 +#: ../../include/features.php:364 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/features.php:359 +#: ../../include/features.php:368 msgid "Community Tagging" msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/features.php:360 +#: ../../include/features.php:369 msgid "Ability to tag existing posts" msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/features.php:368 +#: ../../include/features.php:377 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:369 +#: ../../include/features.php:378 msgid "Add categories to your posts" msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/features.php:377 +#: ../../include/features.php:386 msgid "Emoji Reactions" msgstr "Emoji Reaktionen" -#: ../../include/features.php:378 +#: ../../include/features.php:387 msgid "Add emoji reaction ability to posts" msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/features.php:387 +#: ../../include/features.php:396 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:395 +#: ../../include/features.php:404 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/features.php:396 +#: ../../include/features.php:405 msgid "Ability to dislike posts/comments" msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/features.php:404 +#: ../../include/features.php:413 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:405 +#: ../../include/features.php:414 msgid "Ability to mark special posts with a star indicator" msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" -#: ../../include/features.php:413 +#: ../../include/features.php:422 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:414 +#: ../../include/features.php:423 msgid "Provide a personal tag cloud on your channel page" msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" -#: ../../include/features.php:425 +#: ../../include/features.php:434 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:426 +#: ../../include/features.php:435 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/taxonomy.php:267 ../../include/taxonomy.php:288 +#: ../../include/taxonomy.php:325 ../../include/taxonomy.php:346 msgid "Tags" msgstr "Schlagwörter" -#: ../../include/taxonomy.php:332 +#: ../../include/taxonomy.php:410 msgid "Keywords" msgstr "Schlüsselwörter" -#: ../../include/taxonomy.php:353 +#: ../../include/taxonomy.php:431 msgid "have" msgstr "habe" -#: ../../include/taxonomy.php:353 +#: ../../include/taxonomy.php:431 msgid "has" msgstr "hat" -#: ../../include/taxonomy.php:354 +#: ../../include/taxonomy.php:432 msgid "want" msgstr "will" -#: ../../include/taxonomy.php:354 +#: ../../include/taxonomy.php:432 msgid "wants" msgstr "will" -#: ../../include/taxonomy.php:355 +#: ../../include/taxonomy.php:433 msgid "likes" msgstr "gefällt" -#: ../../include/taxonomy.php:356 +#: ../../include/taxonomy.php:434 msgid "dislikes" msgstr "missfällt" @@ -13097,214 +13437,178 @@ msgstr "%1$ss Geburtstag" msgid "Happy Birthday %1$s" msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/nav.php:90 +#: ../../include/nav.php:91 msgid "Remote authentication" msgstr "Über Konto auf anderem Server einloggen" -#: ../../include/nav.php:90 +#: ../../include/nav.php:91 msgid "Click to authenticate to your home hub" msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" -#: ../../include/nav.php:99 ../../include/nav.php:123 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:102 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: ../../include/nav.php:98 +msgid "Network Activity" +msgstr "Netzwerk-Aktivitäten" -#: ../../include/nav.php:105 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:107 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:113 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:138 -msgid "Take me home" -msgstr "Bringe mich nach Hause (eigener Kanal)" - -#: ../../include/nav.php:140 -msgid "Log me out of this site" -msgstr "Logge mich von dieser Seite aus" +#: ../../include/nav.php:100 +msgid "Mark all activity notifications seen" +msgstr "Alle Benachrichtigungen als gesehen markieren" -#: ../../include/nav.php:145 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:157 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:160 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:171 -msgid "Grid" -msgstr "Grid" - -#: ../../include/nav.php:171 -msgid "Your grid" -msgstr "Dein Grid" - -#: ../../include/nav.php:172 -msgid "View your network/grid" -msgstr "Zeige Dein Netzwerk/Grid an" - -#: ../../include/nav.php:173 -msgid "Mark all grid notifications seen" -msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" - -#: ../../include/nav.php:175 +#: ../../include/nav.php:102 msgid "Channel home" msgstr "Mein Kanal" -#: ../../include/nav.php:176 +#: ../../include/nav.php:103 msgid "View your channel home" msgstr "Zeige Deine Kanalseite an" -#: ../../include/nav.php:177 +#: ../../include/nav.php:104 msgid "Mark all channel notifications seen" msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" -#: ../../include/nav.php:183 -msgid "Notices" -msgstr "Benachrichtigungen" +#: ../../include/nav.php:109 +msgid "Registrations" +msgstr "Registrierungen" -#: ../../include/nav.php:183 +#: ../../include/nav.php:112 msgid "Notifications" msgstr "Benachrichtigungen" -#: ../../include/nav.php:184 +#: ../../include/nav.php:113 msgid "View all notifications" msgstr "Alle Benachrichtigungen ansehen" -#: ../../include/nav.php:185 +#: ../../include/nav.php:114 msgid "Mark all system notifications seen" msgstr "Markiere alle System-Benachrichtigungen als gesehen" -#: ../../include/nav.php:187 +#: ../../include/nav.php:116 msgid "Private mail" msgstr "Persönliche Mail" -#: ../../include/nav.php:188 +#: ../../include/nav.php:117 msgid "View your private messages" msgstr "Zeige Deine persönlichen Nachrichten an" -#: ../../include/nav.php:189 +#: ../../include/nav.php:118 msgid "Mark all private messages seen" msgstr "Markiere alle persönlichen Nachrichten als gesehen" -#: ../../include/nav.php:195 +#: ../../include/nav.php:124 msgid "Event Calendar" msgstr "Terminkalender" -#: ../../include/nav.php:196 -msgid "View events" -msgstr "Termine ansehen" - -#: ../../include/nav.php:197 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:199 +#: ../../include/nav.php:129 ../../include/nav.php:215 msgid "Manage Your Channels" msgstr "Verwalte Deine Kanäle" -#: ../../include/nav.php:201 +#: ../../include/nav.php:132 ../../include/nav.php:217 msgid "Account/Channel Settings" msgstr "Konto-/Kanal-Einstellungen" -#: ../../include/nav.php:203 -msgid "Shared Files" -msgstr "Geteilte Dateien" +#: ../../include/nav.php:138 ../../include/nav.php:167 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:141 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:144 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:146 +msgid "Edit your profile" +msgstr "Profil bearbeiten" -#: ../../include/nav.php:203 -msgid "New files shared with me" -msgstr "Neue Dateien, die mit mir geteilt wurden" +#: ../../include/nav.php:153 ../../include/nav.php:157 +msgid "Sign in" +msgstr "Anmelden" -#: ../../include/nav.php:208 -msgid "Public stream" -msgstr "Öffentlicher Beitrags-Stream" +#: ../../include/nav.php:182 +msgid "Take me home" +msgstr "Bringe mich nach Hause (eigener Kanal)" + +#: ../../include/nav.php:184 +msgid "Log me out of this site" +msgstr "Logge mich von dieser Seite aus" + +#: ../../include/nav.php:189 +msgid "Create an account" +msgstr "Erzeuge ein Konto" -#: ../../include/nav.php:208 -msgid "Public stream activities" -msgstr "Öffentliche Netzwerk-Aktivitäten" +#: ../../include/nav.php:201 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:204 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/nav.php:215 +#: ../../include/nav.php:224 msgid "Site Setup and Configuration" msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/nav.php:274 +#: ../../include/nav.php:311 msgid "@name, #tag, ?doc, content" msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/nav.php:275 +#: ../../include/nav.php:312 msgid "Please wait..." msgstr "Bitte warten..." -#: ../../include/nav.php:278 +#: ../../include/nav.php:318 msgid "Add Apps" msgstr "Apps hinzufügen" -#: ../../include/nav.php:279 +#: ../../include/nav.php:319 msgid "Arrange Apps" msgstr "Apps anordnen" -#: ../../include/nav.php:280 +#: ../../include/nav.php:320 msgid "Toggle System Apps" msgstr "System-Apps umschalten" -#: ../../include/photos.php:111 +#: ../../include/photos.php:123 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" -#: ../../include/photos.php:118 +#: ../../include/photos.php:130 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: ../../include/photos.php:257 +#: ../../include/photos.php:268 msgid "Photo storage failed." msgstr "Fotospeicherung fehlgeschlagen." -#: ../../include/photos.php:297 +#: ../../include/photos.php:308 msgid "a new photo" msgstr "ein neues Foto" -#: ../../include/photos.php:301 +#: ../../include/photos.php:312 #, php-format msgctxt "photo_upload" msgid "%1$s posted %2$s to %3$s" msgstr "%1$s hat %2$s auf %3$s veröffentlicht" -#: ../../include/photos.php:530 +#: ../../include/photos.php:605 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" -#: ../../include/zot.php:653 +#: ../../include/zot.php:654 msgid "Invalid data packet" msgstr "Ungültiges Datenpaket" -#: ../../include/zot.php:680 +#: ../../include/zot.php:681 msgid "Unable to verify channel signature" msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/zot.php:2338 +#: ../../include/zot.php:2368 #, php-format msgid "Unable to verify site signature for %s" msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/zot.php:3946 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -13344,14 +13648,18 @@ msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" msgid "Logged out." msgstr "Ausgeloggt." -#: ../../include/auth.php:275 +#: ../../include/auth.php:263 +msgid "Email validation is incomplete. Please check your email." +msgstr "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen)." + +#: ../../include/auth.php:278 msgid "Failed authentication" msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/help.php:33 +#: ../../include/help.php:34 msgid "Help:" msgstr "Hilfe:" -#: ../../include/help.php:65 +#: ../../include/help.php:78 msgid "Not Found" msgstr "Nicht gefunden" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index 2ee8d8a89..25011af40 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -60,7 +60,6 @@ App::$strings["%d message sent."] = array( 0 => "%d Nachricht gesendet.", 1 => "%d Nachrichten gesendet.", ); -App::$strings["Invite"] = "Einladen"; App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; App::$strings["Send invitations"] = "Einladungen senden"; App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; @@ -90,7 +89,6 @@ App::$strings["Date: "] = "Datum:"; App::$strings["Reason: "] = "Grund:"; App::$strings["INVALID CARD DISMISSED!"] = "UNGÜLTIGE KARTE ABGELEHNT!"; App::$strings["Name: "] = "Name: "; -App::$strings["CalDAV"] = "CalDAV"; App::$strings["Event title"] = "Termintitel"; App::$strings["Start date and time"] = "Startdatum und -zeit"; App::$strings["Example: YYYY-MM-DD HH:mm"] = "Beispiel: JJJJ-MM-TT HH:mm"; @@ -112,7 +110,6 @@ App::$strings["Select calendar"] = "Kalender auswählen"; App::$strings["Delete all"] = "Alles löschen"; App::$strings["Cancel"] = "Abbrechen"; App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen ist leider noch nicht implementiert."; -App::$strings["CardDAV"] = "CardDAV"; App::$strings["Name"] = "Name"; App::$strings["Organisation"] = "Organisation"; App::$strings["Title"] = "Titel"; @@ -141,9 +138,7 @@ App::$strings["This site is not a directory server"] = "Diese Webseite ist kein App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; App::$strings["Posts and comments"] = "Beiträge und Kommentare"; App::$strings["Only posts"] = "Nur Beiträge"; -App::$strings["Channel Home"] = "Mein Kanal"; App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -App::$strings["Language"] = "Sprache"; App::$strings["Export Channel"] = "Kanal exportieren"; App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; @@ -157,6 +152,7 @@ App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; App::$strings["Search"] = "Suche"; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; +App::$strings["Public Stream"] = "Öffentlicher Beitrags-Stream"; App::$strings["Location not found."] = "Klon nicht gefunden."; App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; @@ -211,7 +207,6 @@ App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt we App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; App::$strings["Event not found."] = "Termin nicht gefunden."; App::$strings["event"] = "Termin"; -App::$strings["Events"] = "Termine"; App::$strings["Edit event title"] = "Termintitel bearbeiten"; App::$strings["Required"] = "Benötigt"; App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; @@ -589,6 +584,8 @@ App::$strings["Deliveries per process"] = "Zustellungen pro Prozess"; App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; App::$strings["Poll interval"] = "Abfrageintervall"; App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; +App::$strings["Path to ImageMagick convert program"] = "Pfad zum ImageMagick-Programm convert"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert"; App::$strings["Maximum Load Average"] = "Maximales Load Average"; App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen"; @@ -700,7 +697,7 @@ App::$strings["This website does not expire imported content."] = "Diese Webseit App::$strings["The website limit takes precedence if lower than your limit."] = "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist."; App::$strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; -App::$strings["Default Access Control List (ACL)"] = "Standard-Zugriffsberechtigungsliste (ACL)"; +App::$strings["Default Privacy Group"] = "Standard-Gruppe"; App::$strings["Use my default audience setting for the type of object published"] = "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps"; App::$strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; App::$strings["Default Permissions Group"] = "Standard-Berechtigungsgruppe"; @@ -887,7 +884,6 @@ App::$strings["Create new app"] = "Neue App erstellen"; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; App::$strings["Mood"] = "Laune"; App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -App::$strings["Connections"] = "Verbindungen"; App::$strings["Blocked"] = "Blockiert"; App::$strings["Ignored"] = "Ignoriert"; App::$strings["Hidden"] = "Versteckt"; @@ -916,12 +912,12 @@ App::$strings["Approve connection"] = "Verbindung genehmigen"; App::$strings["Ignore connection"] = "Verbindung ignorieren"; App::$strings["Ignore"] = "Ignorieren"; App::$strings["Recent activity"] = "Kürzliche Aktivitäten"; +App::$strings["Connections"] = "Verbindungen"; App::$strings["Search your connections"] = "Verbindungen durchsuchen"; App::$strings["Connections search"] = "Verbindung suchen"; App::$strings["Find"] = "Finde"; App::$strings["item"] = "Beitrag"; App::$strings["Source of Item"] = "Quelle des Elements"; -App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; App::$strings["My Bookmarks"] = "Meine Lesezeichen"; App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; @@ -936,7 +932,6 @@ App::$strings["Delete Album"] = "Album löschen"; App::$strings["Delete Photo"] = "Foto löschen"; App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -App::$strings["Photos"] = "Fotos"; App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; App::$strings["Upload Photos"] = "Fotos hochladen"; @@ -995,14 +990,22 @@ App::$strings["Recent Photos"] = "Neueste Fotos"; App::$strings["Profile Unavailable."] = "Profil nicht verfügbar."; App::$strings["Not found"] = "Nicht gefunden"; App::$strings["Invalid channel"] = "Ungültiger Kanal"; -App::$strings["Wiki"] = "Wiki"; +App::$strings["Error retrieving wiki"] = "Fehler beim Abrufen des Wiki"; +App::$strings["Error creating zip file export folder"] = "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses "; +App::$strings["Error downloading wiki: "] = "Fehler beim Herunterladen des Wiki:"; App::$strings["Wikis"] = "Wikis"; App::$strings["Download"] = "Herunterladen"; App::$strings["Create New"] = "Neu anlegen"; App::$strings["Wiki name"] = "Name des Wiki"; App::$strings["Content type"] = "Inhaltstyp"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBcode"; +App::$strings["Text"] = "Text"; App::$strings["Type"] = "Typ"; +App::$strings["Any type"] = "Alle Arten"; +App::$strings["Lock content type"] = "Inhaltstyp sperren"; App::$strings["Create a status post for this wiki"] = "Erzeuge einen Statusbeitrag für dieses Wiki"; +App::$strings["Edit Wiki Name"] = "Wiki-Namen bearbeiten"; App::$strings["Wiki not found"] = "Wiki nicht gefunden"; App::$strings["Rename page"] = "Seite umbenennen"; App::$strings["Error retrieving page content"] = "Fehler beim Abrufen des Seiteninhalts"; @@ -1025,6 +1028,8 @@ App::$strings["Error creating wiki. Invalid name."] = "Fehler beim Erstellen des App::$strings["A wiki with this name already exists."] = "Es existiert bereits ein Wiki mit diesem Namen."; App::$strings["Wiki created, but error creating Home page."] = "Das Wiki wurde erzeugt, aber es gab einen Fehler bei der Erstellung der Startseite"; App::$strings["Error creating wiki"] = "Fehler beim Erstellen des Wiki"; +App::$strings["Error updating wiki. Invalid name."] = "Fehler beim Aktualisieren des Wikis. Ungültiger Name."; +App::$strings["Error updating wiki"] = "Fehler beim Aktualisieren des Wikis"; App::$strings["Wiki delete permission denied."] = "Wiki-Löschberechtigung verweigert."; App::$strings["Error deleting wiki"] = "Fehler beim Löschen des Wiki"; App::$strings["New page created"] = "Neue Seite erstellt"; @@ -1036,9 +1041,12 @@ App::$strings["toggle full screen mode"] = "auf Vollbildmodus umschalten"; App::$strings["Layout updated."] = "Layout aktualisiert."; App::$strings["Feature disabled."] = "Funktion deaktiviert."; App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +App::$strings["(modified)"] = "(geändert)"; +App::$strings["Reset"] = "Zurücksetzen"; App::$strings["Layout not found."] = "Layout nicht gefunden."; App::$strings["Module Name:"] = "Modulname:"; App::$strings["Layout Help"] = "Layout-Hilfe"; +App::$strings["Edit another layout"] = "Ein weiteres Layout bearbeiten"; App::$strings["Poke"] = "Anstupsen"; App::$strings["Poke somebody"] = "Jemanden anstupsen"; App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; @@ -1076,9 +1084,11 @@ App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du ha App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +App::$strings["requires approval"] = "Zustimmung erforderlich"; App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; App::$strings["[today]"] = "[Heute]"; App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; +App::$strings["shared a file with you"] = "hat eine Datei mit Dir geteilt"; App::$strings["Invalid item."] = "Ungültiges Element."; App::$strings["Page not found."] = "Seite nicht gefunden."; App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; @@ -1156,7 +1166,6 @@ App::$strings["Please choose the profile you would like to display to %s when vi App::$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."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; App::$strings["Last update:"] = "Letzte Aktualisierung:"; App::$strings["Details"] = "Details"; -App::$strings["My Chatrooms"] = "Meine Chaträume"; App::$strings["Room not found"] = "Chatraum nicht gefunden"; App::$strings["Leave Room"] = "Raum verlassen"; App::$strings["Delete Room"] = "Raum löschen"; @@ -1172,6 +1181,7 @@ App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; App::$strings["Expiration"] = "Verfall"; App::$strings["min"] = "min"; +App::$strings["Photos"] = "Fotos"; App::$strings["Files"] = "Dateien"; App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; @@ -1298,6 +1308,8 @@ App::$strings["Make Default"] = "Zum Standard machen"; App::$strings["%d new messages"] = "%d neue Nachrichten"; App::$strings["%d new introductions"] = "%d neue Vorstellungen"; App::$strings["Delegated Channel"] = "Delegierte Kanäle"; +App::$strings["Cards"] = "Karten"; +App::$strings["Add Card"] = "Karte hinzufügen"; App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; App::$strings["About this site"] = "Über diese Seite"; App::$strings["Site Name"] = "Seitenname"; @@ -1314,11 +1326,11 @@ App::$strings["Ratings"] = "Bewertungen"; App::$strings["Rating: "] = "Bewertung: "; App::$strings["Website: "] = "Webseite: "; App::$strings["Description: "] = "Beschreibung: "; -App::$strings["Webpages"] = "Webseiten"; App::$strings["Import Webpage Elements"] = "Webseitenelemente importieren"; App::$strings["Import selected"] = "Import ausgewählt"; App::$strings["Export Webpage Elements"] = "Webseitenelemente exportieren"; App::$strings["Export selected"] = "Exportieren ausgewählt"; +App::$strings["Webpages"] = "Webseiten"; App::$strings["Actions"] = "Aktionen"; App::$strings["Page Link"] = "Seiten-Link"; App::$strings["Page Title"] = "Seitentitel"; @@ -1327,6 +1339,13 @@ App::$strings["Error opening zip file"] = "Fehler beim Öffnen der ZIP-Datei"; App::$strings["Invalid folder path."] = "Ungültiger Ordnerpfad."; App::$strings["No webpage elements detected."] = "Keine Webseitenelemente erkannt."; App::$strings["Import complete."] = "Import abgeschlossen."; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Konto-Passworts können Kanäle nicht umbenannt werden."; +App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +App::$strings["Change channel nickname/address"] = "Kanalname/-adresse ändern"; +App::$strings["Any/all connections on other networks will be lost!"] = "Jegliche/alle Verbindungen zu anderen Netzwerken gehen verloren!"; +App::$strings["New channel address"] = "Neue Kanaladresse"; +App::$strings["Rename Channel"] = "Kanal umbenennen"; App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; App::$strings["Edit post"] = "Bearbeite Beitrag"; App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; @@ -1362,7 +1381,6 @@ App::$strings["Edit Source"] = "Quelle bearbeiten"; App::$strings["Delete Source"] = "Quelle löschen"; App::$strings["Source removed"] = "Quelle gelöscht"; App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -App::$strings["Post"] = "Beitrag schreiben"; App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; @@ -1381,7 +1399,6 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss % App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; App::$strings["Action completed."] = "Aktion durchgeführt."; App::$strings["Thank you."] = "Vielen Dank."; -App::$strings["Directory"] = "Verzeichnis"; App::$strings["%d rating"] = array( 0 => "%d Bewertung", 1 => "%d Bewertungen", @@ -1413,7 +1430,6 @@ App::$strings["Oldest to Newest"] = "Älteste zuerst"; App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; App::$strings["Xchan Lookup"] = "Xchan-Suche"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; -App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken"; App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; @@ -1422,7 +1438,6 @@ App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht find App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -App::$strings["Mail"] = "Mail"; App::$strings["Messages"] = "Nachrichten"; App::$strings["message"] = "Nachricht"; App::$strings["Message recalled."] = "Nachricht widerrufen."; @@ -1464,7 +1479,6 @@ App::$strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen App::$strings["Enter a folder name"] = "Gib einen Ordnernamen ein"; App::$strings["or select an existing folder (doubleclick)"] = "oder wähle einen vorhanden Ordner aus (Doppelklick)"; App::$strings["Save to Folder"] = "In Ordner speichern"; -App::$strings["Remote Diagnostics"] = "Ferndiagnose"; App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; @@ -1502,6 +1516,7 @@ App::$strings["Developers"] = "Entwickler"; App::$strings["Tutorials"] = "Tutorials"; App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; App::$strings["Contents"] = "Inhalt"; +App::$strings["Item has been removed."] = "Der Beitrag wurde entfernt."; App::$strings["Tag removed"] = "Schlagwort entfernt"; App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; @@ -1509,13 +1524,11 @@ App::$strings["No such group"] = "Gruppe nicht gefunden"; App::$strings["No such channel"] = "Kanal nicht gefunden"; App::$strings["forum"] = "Forum"; App::$strings["Search Results For:"] = "Suchergebnisse für:"; -App::$strings["Activity"] = "Aktivität"; App::$strings["Privacy group is empty"] = "Gruppe ist leer"; App::$strings["Privacy group: "] = "Gruppe:"; App::$strings["Invalid connection."] = "Ungültige Verbindung."; App::$strings["Invalid channel."] = "Ungültiger Kanal."; App::$strings["network"] = "Netzwerk"; -App::$strings["RSS"] = "RSS"; App::$strings["\$Projectname"] = "\$Projectname"; App::$strings["Welcome to %s"] = "Willkommen auf %s"; App::$strings["Permission Denied."] = "Zugriff verweigert."; @@ -1530,8 +1543,8 @@ App::$strings["Share this file"] = "Diese Datei freigeben"; App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; App::$strings["Show in your contacts shared folder"] = "Im geteilten Ordner Deiner Kontakte anzeigen"; App::$strings["No channel."] = "Kein Kanal."; -App::$strings["Common connections"] = "Gemeinsame Verbindungen"; App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +App::$strings["View Common Connections"] = "Zeige gemeinsame Verbindungen"; App::$strings["No connections."] = "Keine Verbindungen."; App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; App::$strings["View Connections"] = "Verbindungen anzeigen"; @@ -1554,6 +1567,7 @@ App::$strings["Website:"] = "Webseite:"; App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +App::$strings["Edit Card"] = "Karte bearbeiten"; App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; App::$strings["Site Member (%s)"] = "Nutzer (%s)"; @@ -1569,7 +1583,6 @@ App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort g App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; App::$strings["Email Address"] = "E-Mail Adresse"; -App::$strings["Reset"] = "Zurücksetzen"; App::$strings["Mark all seen"] = "Alle als gelesen markieren"; App::$strings["0. Beginner/Basic"] = "0. Einsteiger/Basis"; App::$strings["1. Novice - not skilled but willing to learn"] = "1. Anfänger - unerfahren, aber bereit zu lernen"; @@ -1579,13 +1592,26 @@ App::$strings["4. Expert - I can write computer code"] = "4. Experte - Ich kann App::$strings["5. Wizard - I probably know more than you do"] = "5. Zauberer - ich kann wahrscheinlich mehr als Du"; App::$strings["Site Admin"] = "Hub-Administration"; App::$strings["Report Bug"] = "Fehler melden"; +App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; +App::$strings["My Chatrooms"] = "Meine Chaträume"; App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; +App::$strings["Remote Diagnostics"] = "Ferndiagnose"; +App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; App::$strings["Login"] = "Anmelden"; +App::$strings["Activity"] = "Aktivität"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Channel Home"] = "Mein Kanal"; +App::$strings["Events"] = "Termine"; +App::$strings["Directory"] = "Verzeichnis"; +App::$strings["Mail"] = "Mail"; App::$strings["Chat"] = "Chat"; App::$strings["Probe"] = "Testen"; App::$strings["Suggest"] = "Empfehlen"; App::$strings["Random Channel"] = "Zufälliger Kanal"; +App::$strings["Invite"] = "Einladen"; App::$strings["Features"] = "Funktionen"; +App::$strings["Language"] = "Sprache"; +App::$strings["Post"] = "Beitrag schreiben"; App::$strings["Profile Photo"] = "Profilfoto"; App::$strings["Purchase"] = "Kaufen"; App::$strings["Undelete"] = "Wieder hergestellt"; @@ -1676,6 +1702,7 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +App::$strings["Wiki updated successfully"] = "Wiki erfolgreich aktualisiert"; App::$strings["Wiki files deleted successfully"] = "Wiki-Dateien erfolgreich gelöscht"; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; @@ -1717,6 +1744,7 @@ App::$strings["Vote"] = "Abstimmen"; App::$strings["Voting Options"] = "Abstimmungsoptionen"; App::$strings["Save Bookmarks"] = "Favoriten speichern"; App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen"; +App::$strings["This is an unsaved preview"] = "Dies ist eine nicht gespeicherte Vorschau"; App::$strings["%s show all"] = "%s mehr anzeigen"; App::$strings["Bold"] = "Fett"; App::$strings["Italic"] = "Kursiv"; @@ -1724,6 +1752,7 @@ App::$strings["Underline"] = "Unterstrichen"; App::$strings["Quote"] = "Zitat"; App::$strings["Code"] = "Code"; App::$strings["Image"] = "Bild"; +App::$strings["Attach File"] = "Datei anhängen"; App::$strings["Insert Link"] = "Link einfügen"; App::$strings["Video"] = "Video"; App::$strings["Your full name (required)"] = "Ihr vollständiger Name (erforderlich)"; @@ -1826,6 +1855,34 @@ App::$strings["Connected apps"] = "Verbundene Apps"; App::$strings["Permission Groups"] = "Berechtigungsrollen"; App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +App::$strings["New Network Activity"] = "Neue Netzwerk-Aktivitäten"; +App::$strings["New Network Activity Notifications"] = "Benachrichtigungen für neue Netzwerk-Aktivitäten"; +App::$strings["View your network activity"] = "Zeige Deine Netzwerk-Aktivitäten"; +App::$strings["Mark all notifications read"] = "Alle Benachrichtigungen als gesehen markieren"; +App::$strings["New Home Activity"] = "Neue Kanal-Aktivitäten"; +App::$strings["New Home Activity Notifications"] = "Benachrichtigungen für neue Kanal-Aktivitäten"; +App::$strings["View your home activity"] = "Zeige Deine Kanal-Aktivitäten"; +App::$strings["Mark all notifications seen"] = "Alle Benachrichtigungen als gesehen markieren"; +App::$strings["New Mails"] = "Neue Mails"; +App::$strings["New Mails Notifications"] = "Benachrichtigungen für neue Mails"; +App::$strings["View your private mails"] = "Zeige Deine persönlichen Mails"; +App::$strings["Mark all messages seen"] = "Alle Mails als gelesen markieren"; +App::$strings["New Events"] = "Neue Termine"; +App::$strings["New Events Notifications"] = "Benachrichtigungen für neue Termine"; +App::$strings["View events"] = "Termine ansehen"; +App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +App::$strings["New Connections Notifications"] = "Benachrichtigungen für neue Verbindungen"; +App::$strings["View all connections"] = "Zeige alle Verbindungen"; +App::$strings["New Files"] = "Neue Dateien"; +App::$strings["New Files Notifications"] = "Benachrichtigungen für neue Dateien"; +App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["View all notices"] = ""; +App::$strings["Mark all notices seen"] = ""; +App::$strings["New Registrations"] = "Neue Registrierungen"; +App::$strings["New Registrations Notifications"] = "Benachrichtigungen für neue Registrierungen"; +App::$strings["Public Stream Notifications"] = "Benachrichtigungen für öffentlichen Beitrags-Stream"; +App::$strings["View the public stream"] = "Zeige öffentlichen Beitrags-Stream"; +App::$strings["Loading..."] = "Lädt ..."; App::$strings["Source channel not found."] = "Quellkanal nicht gefunden."; App::$strings["Create an account to access services and applications"] = "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können."; App::$strings["Logout"] = "Abmelden"; @@ -1925,6 +1982,7 @@ App::$strings["Or select from a free OpenClipart.org image:"] = "Oder wähle ein App::$strings["Search Term"] = "Suchbegriff"; App::$strings["Unknown error. Please try again later."] = "Unbekannter Fehler. Bitte versuchen Sie es später erneut."; App::$strings["Profile photo updated successfully."] = "Profilfoto erfolgreich aktualisiert."; +App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; App::$strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit unangemessenen Inhalten in der Standard-Albumansicht bereit"; App::$strings["Post to WordPress"] = "Auf WordPress posten"; @@ -2040,7 +2098,7 @@ App::$strings["Login failed."] = "Login fehlgeschlagen."; App::$strings["Male"] = "Männlich"; App::$strings["Female"] = "Weiblich"; App::$strings["You're welcome."] = "Gern geschehen."; -App::$strings["Ah shucks..."] = ""; +App::$strings["Ah shucks..."] = "Ach Mist..."; App::$strings["Don't mention it."] = "Keine Ursache."; App::$strings["<blush>"] = ""; App::$strings["Page to load after login"] = "Seite, die nach dem Login geladen werden soll"; @@ -2094,9 +2152,6 @@ App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Ve App::$strings["Diaspora Protocol Settings"] = "Diaspora Protokoll Einstellungen"; App::$strings["No username found in import file."] = "Es wurde kein Nutzername in der importierten Datei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; -App::$strings["Error retrieving wiki"] = "Fehler beim Abrufen des Wiki"; -App::$strings["Error creating zip file export folder"] = "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses "; -App::$strings["Error downloading wiki: "] = "Fehler beim Herunterladen des Wiki:"; App::$strings["Your account on %s will expire in a few days."] = "Dein Account auf %s wird in ein paar Tagen ablaufen."; App::$strings["Your $Productname test account is about to expire."] = "Dein $Productname Test-Account wird bald auslaufen."; App::$strings["Enable Rainbowtag"] = "Rainbowtag aktivieren"; @@ -2106,6 +2161,20 @@ App::$strings["Show Upload Limits"] = "Hochladebeschränkungen anzeigen"; App::$strings["Hubzilla configured maximum size: "] = "Die in Hubzilla eingestellte maximale Größe:"; App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize:"; App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (muss größer sein als upload_max_filesize):"; +App::$strings["generic profile image"] = ""; +App::$strings["random geometric pattern"] = ""; +App::$strings["monster face"] = ""; +App::$strings["computer generated face"] = ""; +App::$strings["retro arcade style face"] = ""; +App::$strings["Hub default profile photo"] = "Standard-Profilfoto für diesen Hub"; +App::$strings["Information"] = "Information"; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +App::$strings["Save Settings"] = "Einstellungen speichern"; +App::$strings["Default avatar image"] = ""; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = ""; +App::$strings["Rating of images"] = ""; +App::$strings["Select the appropriate avatar rating for your site. See README"] = ""; +App::$strings["Gravatar settings updated."] = ""; App::$strings["Recent Channel/Profile Viewers"] = "Kürzliche Kanal/Profil Besucher"; App::$strings["This plugin/addon has not been configured."] = "Dieses Plugin/Addon wurde noch nicht konfiguriert."; App::$strings["Please visit the Visage settings on %s"] = "Bitte rufe die Visage Einstellungen auf %s auf"; @@ -2131,7 +2200,6 @@ App::$strings["Default zoom"] = "Standardzoom"; App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Die Standard-Vergrößerungsstufe (1:Welt, 18:höchste, hängt außerdem vom Kachelserver ab)."; App::$strings["Include marker on map"] = "Markierung auf der Karte einschließen"; App::$strings["Include a marker on the map."] = "Binde eine Markierung auf der Karte ein."; -App::$strings["Save Settings"] = "Einstellungen speichern"; App::$strings["text to include in all outgoing posts from this site"] = "Test der in alle Beiträge angefügt werden soll, die von dieser Seite ausgehen"; App::$strings["Post to Friendica"] = "Bei Friendica veröffentlichen"; App::$strings["rtof Settings saved."] = "rtof-Einstellungen gespeichert."; @@ -2183,6 +2251,11 @@ App::$strings["This will import all your Friendica photo albums to this Red chan App::$strings["Friendica Server base URL"] = "BasisURL des Friendica Servers"; App::$strings["Friendica Login Username"] = "Friendica-Anmeldebenutzername"; App::$strings["Friendica Login Password"] = "Friendica-Anmeldepasswort"; +App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["ActivityPub Protocol Settings updated."] = ""; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Enable the ActivityPub protocol for this channel"] = ""; +App::$strings["ActivityPub Protocol Settings"] = ""; App::$strings["Project Servers and Resources"] = "Projektserver und -ressourcen"; App::$strings["Project Creator and Tech Lead"] = "Projektersteller und Technischer Leiter"; App::$strings["Admin, developer, directorymin, support bloke"] = "Administrator, Entwickler, Verzeichnis Betreibender, Supportleistende"; @@ -2265,7 +2338,6 @@ App::$strings["Invalid game."] = "Ungültiges Spiel."; App::$strings["You are not a player in this game."] = "Sie sind kein Spieler in diesem Spiel."; App::$strings["You must be a local channel to create a game."] = "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein"; App::$strings["You must select one opponent that is not yourself."] = "Du musst einen Gegner wählen, der nicht du selbst ist"; -App::$strings["Creating new game..."] = "Neues Spiel wird erstellt..."; App::$strings["You must select white or black."] = "Sie müssen weiß oder schwarz auswählen."; App::$strings["Error creating new game."] = "Fehler beim Erstellen eines neuen Spiels."; App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; @@ -2406,7 +2478,6 @@ App::$strings["Redmatrix File Storage Import"] = ""; App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Hiermit werden alle deine Daten aus der Redmatrix Cloud in diesen Kanal importiert."; App::$strings["file"] = "Datei"; App::$strings["Send email to all members"] = "E-Mail an alle Mitglieder senden"; -App::$strings["$1%s Administrator"] = "$1%s Administrator"; App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d von %2\$d Nachrichten gesendet."; App::$strings["Send email to all hub members."] = "Eine E-Mail an alle Mitglieder dieses Hubs senden."; App::$strings["Sender Email address"] = "E-Mail Adresse des Absenders"; @@ -2479,7 +2550,6 @@ App::$strings["Categories:"] = "Kategorien:"; App::$strings["Filed under:"] = "Gespeichert unter:"; App::$strings["View in context"] = "Im Zusammenhang anschauen"; App::$strings["remove"] = "lösche"; -App::$strings["Loading..."] = "Lädt ..."; App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; App::$strings["View Source"] = "Quelle anzeigen"; App::$strings["Follow Thread"] = "Unterhaltung folgen"; @@ -2519,8 +2589,6 @@ App::$strings["Toggle comments"] = "Kommentare umschalten"; App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; -App::$strings["Discover"] = "Entdecken"; -App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; App::$strings["Commented Order"] = "Neueste Kommentare"; App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; App::$strings["Posted Order"] = "Neueste Beiträge"; @@ -2537,6 +2605,7 @@ App::$strings["Photo Albums"] = "Fotoalben"; App::$strings["Files and Storage"] = "Dateien und Speicher"; App::$strings["Bookmarks"] = "Lesezeichen"; App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +App::$strings["View Cards"] = ""; App::$strings["View Webpages"] = "Webseiten anzeigen"; App::$strings["__ctx:noun__ Attending"] = array( 0 => "Zusage", @@ -2636,9 +2705,12 @@ App::$strings["Download binary/encrypted content"] = "Binären/verschlüsselten App::$strings["default"] = "Standard"; App::$strings["Page layout"] = "Seiten-Layout"; App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; +App::$strings["HTML"] = ""; +App::$strings["Comanche Layout"] = ""; +App::$strings["PHP"] = ""; App::$strings["Page content type"] = "Art des Seiteninhalts"; App::$strings["activity"] = "Aktivität"; -App::$strings["a-z, 0-9, -, _, and . only"] = "nur a-z, 0-9, -, _, und ."; +App::$strings["a-z, 0-9, -, and _ only"] = ""; App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; App::$strings["Pages"] = "Seiten"; App::$strings["Import website..."] = "Webseite importieren..."; @@ -2667,18 +2739,16 @@ App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morg App::$strings["Random Profile"] = "Zufallsprofil"; App::$strings["Invite Friends"] = "Lade Freunde ein"; App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", -); -App::$strings["show more"] = "mehr zeigen"; +App::$strings["Common Connections"] = ""; +App::$strings["View all %d common connections"] = ""; App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; +App::$strings["Remote channel or protocol unavailable."] = ""; App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; App::$strings["Delete this item?"] = "Dieses Element löschen?"; App::$strings["%s show less"] = "%s weniger anzeigen"; @@ -2762,7 +2832,6 @@ App::$strings["Path not found."] = "Pfad nicht gefunden."; App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; App::$strings["Empty path"] = "Leere Pfadangabe"; -App::$strings["guest:"] = "Gast:"; App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; App::$strings["(Unknown)"] = "(Unbekannt)"; App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; @@ -2785,8 +2854,6 @@ App::$strings["Empty name"] = "Namensfeld leer"; App::$strings["Name too long"] = "Name ist zu lang"; App::$strings["No account identifier"] = "Keine Account-Kennung"; App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; -App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; App::$strings["Default Profile"] = "Standard-Profil"; App::$strings["Unable to retrieve modified identity"] = "Geänderte Identität kann nicht empfangen werden"; @@ -2818,7 +2885,6 @@ App::$strings["Love/Romance:"] = "Liebe/Romantik:"; App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; App::$strings["School/education:"] = "Schule/Ausbildung:"; App::$strings["Like this thing"] = "Gefällt mir"; -App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; App::$strings["Starts:"] = "Beginnt:"; App::$strings["Finishes:"] = "Endet:"; @@ -2837,7 +2903,6 @@ App::$strings["Friendica"] = "Friendica"; App::$strings["OStatus"] = "OStatus"; App::$strings["GNU-Social"] = "GNU-Social"; App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["ActivityPub"] = "ActivityPub"; App::$strings["Diaspora"] = "Diaspora"; App::$strings["Facebook"] = "Facebook"; App::$strings["Zot"] = "Zot!"; @@ -2856,6 +2921,7 @@ App::$strings["Image/photo"] = "Bild/Foto"; App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; App::$strings["Install %s element: "] = "Element %s installieren: "; App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +App::$strings["card"] = "Karte"; App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; App::$strings["spoiler"] = "Spoiler"; App::$strings["$1 wrote:"] = "$1 schrieb:"; @@ -2863,6 +2929,7 @@ App::$strings[" by "] = "von"; App::$strings[" on "] = "am"; App::$strings["Embedded content"] = "Eingebetteter Inhalt"; App::$strings["Embedding disabled"] = "Einbetten deaktiviert"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; App::$strings["General Features"] = "Allgemeine Funktionen"; App::$strings["Multiple Profiles"] = "Mehrfachprofile"; App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal"; @@ -2875,6 +2942,7 @@ App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Er App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Kanal zur Verfügung"; App::$strings["Private Notes"] = "Private Notizen"; App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)"; +App::$strings["Create personal planning cards"] = "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken"; App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; App::$strings["Change channels directly from within the navigation dropdown menu"] = "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü"; App::$strings["Photo Location"] = "Aufnahmeort"; @@ -2998,24 +3066,12 @@ App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["End this session"] = "Beende diese Sitzung"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Sign in"] = "Anmelden"; -App::$strings["Take me home"] = "Bringe mich nach Hause (eigener Kanal)"; -App::$strings["Log me out of this site"] = "Logge mich von dieser Seite aus"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Grid"] = "Grid"; -App::$strings["Your grid"] = "Dein Grid"; -App::$strings["View your network/grid"] = "Zeige Dein Netzwerk/Grid an"; -App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +App::$strings["Network Activity"] = "Netzwerk-Aktivitäten"; +App::$strings["Mark all activity notifications seen"] = "Alle Benachrichtigungen als gesehen markieren"; App::$strings["Channel home"] = "Mein Kanal"; App::$strings["View your channel home"] = "Zeige Deine Kanalseite an"; App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["Registrations"] = "Registrierungen"; App::$strings["Notifications"] = "Benachrichtigungen"; App::$strings["View all notifications"] = "Alle Benachrichtigungen ansehen"; App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; @@ -3023,14 +3079,18 @@ App::$strings["Private mail"] = "Persönliche Mail"; App::$strings["View your private messages"] = "Zeige Deine persönlichen Nachrichten an"; App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; App::$strings["Event Calendar"] = "Terminkalender"; -App::$strings["View events"] = "Termine ansehen"; -App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -App::$strings["Shared Files"] = "Geteilte Dateien"; -App::$strings["New files shared with me"] = "Neue Dateien, die mit mir geteilt wurden"; -App::$strings["Public stream"] = "Öffentlicher Beitrags-Stream"; -App::$strings["Public stream activities"] = "Öffentliche Netzwerk-Aktivitäten"; +App::$strings["End this session"] = "Beende diese Sitzung"; +App::$strings["Your profile page"] = "Deine Profilseite"; +App::$strings["Manage/Edit profiles"] = "Profile verwalten"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Sign in"] = "Anmelden"; +App::$strings["Take me home"] = "Bringe mich nach Hause (eigener Kanal)"; +App::$strings["Log me out of this site"] = "Logge mich von dieser Seite aus"; +App::$strings["Create an account"] = "Erzeuge ein Konto"; +App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; App::$strings["Please wait..."] = "Bitte warten..."; @@ -3046,7 +3106,6 @@ App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; -App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; App::$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."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; App::$strings["edit"] = "Bearbeiten"; @@ -3056,6 +3115,7 @@ App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gru App::$strings["New window"] = "Neues Fenster"; App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; App::$strings["Logged out."] = "Ausgeloggt."; +App::$strings["Email validation is incomplete. Please check your email."] = "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen)."; App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; App::$strings["Help:"] = "Hilfe:"; App::$strings["Not Found"] = "Nicht gefunden"; -- cgit v1.2.3 From 0061ac8584feb6d18962518263ab18617dbf8dc5 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 22 Oct 2017 21:01:58 +0200 Subject: do not show seen notifys in notifications - show them in mod notifications instead. Update notifications count also on notifications updates --- Zotlabs/Module/Notifications.php | 35 +++++++++++++++++++++++++++-------- Zotlabs/Module/Ping.php | 37 ++++++++++--------------------------- view/js/main.js | 1 + view/tpl/notify.tpl | 11 +++++++++-- 4 files changed, 47 insertions(+), 37 deletions(-) diff --git a/Zotlabs/Module/Notifications.php b/Zotlabs/Module/Notifications.php index 652648701..dfa007548 100644 --- a/Zotlabs/Module/Notifications.php +++ b/Zotlabs/Module/Notifications.php @@ -12,25 +12,44 @@ class Notifications extends \Zotlabs\Web\Controller { return; } - nav_set_selected('notifications'); + nav_set_selected('Notifications'); $o = ''; - - $r = q("SELECT * from notify where uid = %d and seen = 0 order by created desc", + + $r = q("select count(*) as total from notify where uid = %d and seen = 0", intval(local_channel()) ); + if($r && intval($t[0]['total']) > 49) { + $r = q("select * from notify where uid = %d + and seen = 0 order by created desc limit 50", + intval(local_channel()) + ); + } else { + $r1 = q("select * from notify where uid = %d + and seen = 0 order by created desc limit 50", + intval(local_channel()) + ); + $r2 = q("select * from notify where uid = %d + and seen = 1 order by created desc limit %d", + intval(local_channel()), + intval(50 - intval($t[0]['total'])) + ); + $r = array_merge($r1,$r2); + } if($r) { $notifications_available = 1; - foreach ($r as $it) { - $x = strip_tags(bbcode($it['msg'])); + foreach ($r as $rr) { + $x = strip_tags(bbcode($rr['msg'])); if(strpos($x,',')) $x = substr($x,strpos($x,',')+1); $notif_content .= replace_macros(get_markup_template('notify.tpl'),array( - '$item_link' => z_root().'/notify/view/'. $it['id'], - '$item_image' => $it['photo'], + '$item_link' => z_root().'/notify/view/'. $rr['id'], + '$item_image' => $rr['photo'], '$item_text' => $x, - '$item_when' => relative_date($it['created']) + '$item_when' => relative_date($rr['created']), + '$item_seen' => (($rr['seen']) ? true : false), + '$new' => t('New') )); } } diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index 5f44b3c20..c91659f2f 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -258,37 +258,20 @@ class Ping extends \Zotlabs\Web\Controller { * dropdown menu. */ if(argc() > 1 && argv(1) === 'notify') { - $t = q("select count(*) as total from notify where uid = %d and seen = 0", + $t = q("select * from notify where uid = %d and seen = 0 order by created desc", intval(local_channel()) ); - if($t && intval($t[0]['total']) > 49) { - $z = q("select * from notify where uid = %d - and seen = 0 order by created desc limit 50", - intval(local_channel()) - ); - } else { - $z1 = q("select * from notify where uid = %d - and seen = 0 order by created desc limit 50", - intval(local_channel()) - ); - $z2 = q("select * from notify where uid = %d - and seen = 1 order by created desc limit %d", - intval(local_channel()), - intval(50 - intval($t[0]['total'])) - ); - $z = array_merge($z1,$z2); - } - if(count($z)) { - foreach($z as $zz) { + if($t) { + foreach($t as $tt) { $notifs[] = array( - 'notify_link' => z_root() . '/notify/view/' . $zz['id'], - 'name' => $zz['xname'], - 'url' => $zz['url'], - 'photo' => $zz['photo'], - 'when' => relative_date($zz['created']), - 'hclass' => (($zz['seen']) ? 'notify-seen' : 'notify-unseen'), - 'message' => strip_tags(bbcode($zz['msg'])) + 'notify_link' => z_root() . '/notify/view/' . $tt['id'], + 'name' => $tt['xname'], + 'url' => $tt['url'], + 'photo' => $tt['photo'], + 'when' => relative_date($tt['created']), + 'hclass' => (($tt['seen']) ? 'notify-seen' : 'notify-unseen'), + 'message' => strip_tags(bbcode($tt['msg'])) ); } } diff --git a/view/js/main.js b/view/js/main.js index b4c2bcf5d..882f50e8a 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -946,6 +946,7 @@ function notify_popup_loader(notifyType) { $("#navbar-" + notifyType + "-menu").html(notifications_all + notifications_mark); $("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark); + $("." + notifyType + "-update").html(data.notify.length); $(data.notify).each(function() { html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); diff --git a/view/tpl/notify.tpl b/view/tpl/notify.tpl index ae6e160b1..b5bccc8a4 100755 --- a/view/tpl/notify.tpl +++ b/view/tpl/notify.tpl @@ -1,3 +1,10 @@ -
- {{$item_text}} {{$item_when}} +
+ {{if ! $item_seen}} + {{$new}} + {{/if}} + + + {{$item_text}}
+ {{$item_when}} +
-- cgit v1.2.3 From c7d9a5ac91b3d256f31ebada4b38875905addb1f Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 22 Oct 2017 12:35:17 -0700 Subject: wrong key --- include/zot.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/zot.php b/include/zot.php index 55632fc31..dad30dbb0 100644 --- a/include/zot.php +++ b/include/zot.php @@ -361,8 +361,6 @@ function zot_refresh($them, $channel = null, $force = false) { else $permissions = $j['permissions']; - $connected_set = false; - if($permissions && is_array($permissions)) { $old_read_stream_perm = get_abconfig($channel['channel_id'],$x['hash'],'their_perms','view_stream'); @@ -4177,7 +4175,7 @@ function zotinfo($arr) { if($ztarget_hash) { $permissions['connected'] = false; - $b = q("select * from abook where abook_xchan = '%s' and abook_channel = %d limit 1", + $b = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and abook_pending = 0 limit 1", dbesc($ztarget_hash), intval($e['channel_id']) ); @@ -4201,7 +4199,7 @@ function zotinfo($arr) { if($x) $ret['locations'] = $x; - $ret['site'] = zot_site_info($e['xchan_pubkey']); + $ret['site'] = zot_site_info($e['channel_prvkey']); check_zotinfo($e,$x,$ret); -- cgit v1.2.3