aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-10-22 19:32:31 -0700
committerzotlabs <mike@macgirvin.com>2017-10-22 19:32:31 -0700
commitfd5764e16677694257c6a649bf2056b36a1dc65f (patch)
tree05ffddc7151f19ab58899158091b5fd886ded5af
parent812d904c98d6fb3a4124f6e2415de5a139f954ce (diff)
parentb58bf75f21d15ac440bb3a90edb29afac9eb64ba (diff)
downloadvolse-hubzilla-fd5764e16677694257c6a649bf2056b36a1dc65f.tar.gz
volse-hubzilla-fd5764e16677694257c6a649bf2056b36a1dc65f.tar.bz2
volse-hubzilla-fd5764e16677694257c6a649bf2056b36a1dc65f.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
-rw-r--r--Zotlabs/Module/Notifications.php35
-rw-r--r--Zotlabs/Module/Ping.php37
-rw-r--r--Zotlabs/Module/Register.php7
-rw-r--r--view/de/hmessages.po3100
-rw-r--r--view/de/hstrings.php192
-rw-r--r--view/es-es/hmessages.po3098
-rw-r--r--view/es-es/hstrings.php190
-rw-r--r--view/js/main.js1
-rwxr-xr-xview/tpl/notify.tpl11
9 files changed, 3712 insertions, 2959 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/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php
index 9cf0960c0..95e3ca96f 100644
--- a/Zotlabs/Module/Register.php
+++ b/Zotlabs/Module/Register.php
@@ -130,6 +130,13 @@ class Register extends \Zotlabs\Web\Controller {
else {
$res = send_register_success_email($result['email'],$result['password']);
}
+ if($res) {
+ 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) {
$res = send_reg_approval_email($result);
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 <forum@suschka.de>\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 <a
#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:490
#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63
-#: ../../Zotlabs/Module/Display.php:22
+#: ../../Zotlabs/Module/Display.php:21
#: ../../Zotlabs/Module/Viewconnections.php:23
msgid "Public access denied."
msgstr "Öffentlichen Zugriff verweigert."
-#: ../../Zotlabs/Module/Search.php:25 ../../Zotlabs/Module/Search.php:44
-#: ../../Zotlabs/Module/Connections.php:313 ../../Zotlabs/Lib/Apps.php:250
-#: ../../Zotlabs/Widget/Sitesearch.php:31 ../../include/text.php:1021
-#: ../../include/text.php:1033 ../../include/acl_selectors.php:213
-#: ../../include/nav.php:160
+#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:313
+#: ../../Zotlabs/Lib/Apps.php:250 ../../Zotlabs/Widget/Sitesearch.php:31
+#: ../../include/text.php:1029 ../../include/text.php:1041
+#: ../../include/acl_selectors.php:213 ../../include/nav.php:204
msgid "Search"
msgstr "Suche"
@@ -936,6 +922,11 @@ msgstr "Beiträge mit Schlagwort: %s"
msgid "Search results for: %s"
msgstr "Suchergebnisse für: %s"
+#: ../../Zotlabs/Module/Pubstream.php:38
+#: ../../Zotlabs/Widget/Notifications.php:128
+msgid "Public Stream"
+msgstr "Öffentlicher Beitrags-Stream"
+
#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54
msgid "Location not found."
msgstr "Klon nicht gefunden."
@@ -988,11 +979,11 @@ msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub
msgid "Use this form to drop the location if the hub is no longer operating."
msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."
-#: ../../Zotlabs/Module/Apporder.php:34
+#: ../../Zotlabs/Module/Apporder.php:39
msgid "Change Order of Navigation Apps"
msgstr "App-Reihenfolge in der Navigation ändern"
-#: ../../Zotlabs/Module/Apporder.php:35
+#: ../../Zotlabs/Module/Apporder.php:40
msgid ""
"Use arrows to move the corresponding app up or down in the display list"
msgstr "Benutze die Pfeiltasten, um die jeweilige App in der Anzeigeliste auf- oder abwärts zu bewegen."
@@ -1047,18 +1038,20 @@ msgstr "Magic-Auth verwenden, falls verfügbar"
#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241
#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471
#: ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Admin/Site.php:235
+#: ../../Zotlabs/Module/Admin/Site.php:237
#: ../../Zotlabs/Module/Settings/Channel.php:298
#: ../../Zotlabs/Module/Settings/Display.php:103
#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:644
-#: ../../Zotlabs/Module/Wiki.php:182 ../../Zotlabs/Module/Connedit.php:392
-#: ../../Zotlabs/Module/Connedit.php:775 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Profiles.php:681
+#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219
+#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779
+#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
+#: ../../Zotlabs/Module/Profiles.php:681
#: ../../Zotlabs/Module/Filestorage.php:150
#: ../../Zotlabs/Module/Filestorage.php:158
-#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1605
-#: ../../view/theme/redbasic/php/config.php:100
-#: ../../view/theme/redbasic/php/config.php:115
+#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1644
+#: ../../view/theme/redbasic_c/php/config.php:100
+#: ../../view/theme/redbasic_c/php/config.php:115
+#: ../../view/theme/redbasic/php/config.php:98
#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82
#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109
#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73
@@ -1096,18 +1089,19 @@ msgstr "Nein"
#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241
#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471
#: ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Admin/Site.php:237
+#: ../../Zotlabs/Module/Admin/Site.php:239
#: ../../Zotlabs/Module/Settings/Channel.php:298
#: ../../Zotlabs/Module/Settings/Display.php:103
#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:644
-#: ../../Zotlabs/Module/Wiki.php:182 ../../Zotlabs/Module/Connedit.php:392
-#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
-#: ../../Zotlabs/Module/Profiles.php:681
+#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219
+#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100
+#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Profiles.php:681
#: ../../Zotlabs/Module/Filestorage.php:150
#: ../../Zotlabs/Module/Filestorage.php:158
-#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1605
-#: ../../view/theme/redbasic/php/config.php:100
-#: ../../view/theme/redbasic/php/config.php:115
+#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1644
+#: ../../view/theme/redbasic_c/php/config.php:100
+#: ../../view/theme/redbasic_c/php/config.php:115
+#: ../../view/theme/redbasic/php/config.php:98
#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82
#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109
#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73
@@ -1248,17 +1242,10 @@ msgstr "Termin nicht gefunden."
#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:51
#: ../../Zotlabs/Module/Like.php:372 ../../include/conversation.php:119
-#: ../../include/text.php:1933 ../../include/event.php:1145
+#: ../../include/text.php:1941 ../../include/event.php:1145
msgid "event"
msgstr "Termin"
-#: ../../Zotlabs/Module/Events.php:275 ../../Zotlabs/Lib/Apps.php:243
-#: ../../include/conversation.php:1799 ../../include/conversation.php:1802
-#: ../../include/nav.php:195 ../../include/nav.php:397
-#: ../../include/nav.php:400
-msgid "Events"
-msgstr "Termine"
-
#: ../../Zotlabs/Module/Events.php:460
msgid "Edit event title"
msgstr "Termintitel bearbeiten"
@@ -1316,13 +1303,13 @@ msgstr "Beschreibung bearbeiten"
msgid "Edit Location"
msgstr "Ort bearbeiten"
-#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1065
-#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:739
-#: ../../include/conversation.php:1277
+#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1070
+#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:753
+#: ../../include/conversation.php:1313
msgid "Preview"
msgstr "Vorschau"
-#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1340
+#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1385
msgid "Permission settings"
msgstr "Berechtigungs-Einstellungen"
@@ -1347,7 +1334,7 @@ msgid "Delete event"
msgstr "Termin löschen"
#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:313
-#: ../../include/text.php:1752
+#: ../../include/text.php:1760
msgid "Link to Source"
msgstr "Link zur Quelle"
@@ -1364,7 +1351,7 @@ msgid "Create Event"
msgstr "Termin anlegen"
#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:339
-#: ../../include/channel.php:1488
+#: ../../include/channel.php:1588
msgid "Export"
msgstr "Exportieren"
@@ -1432,21 +1419,21 @@ msgstr "Ort (URL), um die App zu kaufen"
msgid "Please login."
msgstr "Bitte melde dich an."
-#: ../../Zotlabs/Module/Magic.php:71
+#: ../../Zotlabs/Module/Magic.php:72
msgid "Hub not found."
msgstr "Server nicht gefunden."
#: ../../Zotlabs/Module/Subthread.php:87 ../../Zotlabs/Module/Tagger.php:47
#: ../../Zotlabs/Module/Like.php:370
#: ../../addon/redphotos/redphotohelper.php:71
-#: ../../addon/diaspora/Receiver.php:1370 ../../include/conversation.php:116
-#: ../../include/text.php:1930
+#: ../../addon/diaspora/Receiver.php:1424 ../../addon/pubcrawl/as.php:1288
+#: ../../include/conversation.php:116 ../../include/text.php:1938
msgid "photo"
msgstr "Foto"
#: ../../Zotlabs/Module/Subthread.php:87 ../../Zotlabs/Module/Like.php:370
-#: ../../addon/diaspora/Receiver.php:1370 ../../include/conversation.php:144
-#: ../../include/text.php:1936
+#: ../../addon/diaspora/Receiver.php:1424 ../../addon/pubcrawl/as.php:1288
+#: ../../include/conversation.php:144 ../../include/text.php:1944
msgid "status"
msgstr "Status"
@@ -1494,7 +1481,7 @@ msgid ""
msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."
#: ../../Zotlabs/Module/Import_items.php:127
-#: ../../Zotlabs/Module/Import.php:505
+#: ../../Zotlabs/Module/Import.php:516
msgid "File to Upload"
msgstr "Hochzuladende Datei:"
@@ -1570,6 +1557,7 @@ msgstr "Diesen Kanal löschen"
#: ../../Zotlabs/Module/Removeme.php:61
#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Changeaddr.php:78
msgid "WARNING: "
msgstr "WARNUNG: "
@@ -1584,6 +1572,7 @@ msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden
#: ../../Zotlabs/Module/Removeme.php:62
#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Changeaddr.php:79
msgid "Please enter your password for verification:"
msgstr "Bitte gib zur Bestätigung Dein Passwort ein:"
@@ -1611,7 +1600,7 @@ msgid "NEW"
msgstr "NEU"
#: ../../Zotlabs/Module/Sharedwithme.php:107
-#: ../../Zotlabs/Storage/Browser.php:236 ../../include/text.php:1386
+#: ../../Zotlabs/Storage/Browser.php:236 ../../include/text.php:1394
msgid "Size"
msgstr "Größe"
@@ -2204,9 +2193,10 @@ msgstr "Versuche, diesen Updateschritt automatisch auszuführen"
#: ../../Zotlabs/Module/Admin/Plugins.php:259
#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89
-#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:35
+#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:33
+#: ../../Zotlabs/Module/Display.php:347
#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62
-#: ../../include/items.php:3361
+#: ../../include/items.php:3410
msgid "Item not found."
msgstr "Element nicht gefunden."
@@ -2237,7 +2227,7 @@ msgstr "Aktivieren"
#: ../../Zotlabs/Module/Admin/Channels.php:145
#: ../../Zotlabs/Module/Admin/Themes.php:122
#: ../../Zotlabs/Module/Admin/Themes.php:156
-#: ../../Zotlabs/Module/Admin/Site.php:269
+#: ../../Zotlabs/Module/Admin/Site.php:271
#: ../../Zotlabs/Module/Admin/Security.php:86
#: ../../Zotlabs/Module/Admin.php:136
msgid "Administration"
@@ -2256,7 +2246,8 @@ msgstr "Umschalten"
#: ../../Zotlabs/Module/Admin/Plugins.php:344
#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:236
-#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:201
+#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:132
+#: ../../include/nav.php:217
msgid "Settings"
msgstr "Einstellungen"
@@ -2319,7 +2310,7 @@ msgstr "Plugin-Repository herunterladen"
msgid "Install new repo"
msgstr "Neues Repository installieren"
-#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:384
+#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:383
msgid "Install"
msgstr "Installieren"
@@ -2340,7 +2331,7 @@ msgid "Switch branch"
msgstr "Zweig/Branch wechseln"
#: ../../Zotlabs/Module/Admin/Plugins.php:455
-#: ../../Zotlabs/Module/Photos.php:962 ../../Zotlabs/Module/Tagrm.php:137
+#: ../../Zotlabs/Module/Photos.php:967 ../../Zotlabs/Module/Tagrm.php:137
#: ../../addon/superblock/superblock.php:116
msgid "Remove"
msgstr "Entfernen"
@@ -2363,7 +2354,7 @@ msgstr[1] "%s Konten gelöscht"
msgid "Account not found"
msgstr "Konto nicht gefunden"
-#: ../../Zotlabs/Module/Admin/Accounts.php:90
+#: ../../Zotlabs/Module/Admin/Accounts.php:90 ../../include/channel.php:2357
#, php-format
msgid "Account '%s' deleted"
msgstr "Konto '%s' gelöscht"
@@ -2402,7 +2393,7 @@ msgid "No registrations."
msgstr "Keine Registrierungen."
#: ../../Zotlabs/Module/Admin/Accounts.php:171
-#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:685
+#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:716
msgid "Approve"
msgstr "Genehmigen"
@@ -2411,12 +2402,12 @@ msgid "Deny"
msgstr "Verweigern"
#: ../../Zotlabs/Module/Admin/Accounts.php:174
-#: ../../Zotlabs/Module/Connedit.php:618
+#: ../../Zotlabs/Module/Connedit.php:622
msgid "Block"
msgstr "Blockieren"
#: ../../Zotlabs/Module/Admin/Accounts.php:175
-#: ../../Zotlabs/Module/Connedit.php:618
+#: ../../Zotlabs/Module/Connedit.php:622
msgid "Unblock"
msgstr "Freigeben"
@@ -2559,7 +2550,7 @@ msgid "Disallow Code"
msgstr "Code sperren"
#: ../../Zotlabs/Module/Admin/Channels.php:154
-#: ../../include/conversation.php:1757 ../../include/nav.php:355
+#: ../../include/conversation.php:1791 ../../include/nav.php:399
msgid "Channel"
msgstr "Kanal"
@@ -2604,382 +2595,394 @@ msgstr "[Experimentell]"
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
-#: ../../Zotlabs/Module/Admin/Site.php:142
+#: ../../Zotlabs/Module/Admin/Site.php:144
msgid "Site settings updated."
msgstr "Site-Einstellungen aktualisiert."
-#: ../../Zotlabs/Module/Admin/Site.php:168
-#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2928
+#: ../../Zotlabs/Module/Admin/Site.php:170
+#: ../../view/theme/redbasic_c/php/config.php:15
+#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2943
msgid "Default"
msgstr "Standard"
-#: ../../Zotlabs/Module/Admin/Site.php:179
+#: ../../Zotlabs/Module/Admin/Site.php:181
#: ../../Zotlabs/Module/Settings/Display.php:137
#, php-format
msgid "%s - (Incompatible)"
msgstr "%s - (Inkompatibel)"
-#: ../../Zotlabs/Module/Admin/Site.php:186
+#: ../../Zotlabs/Module/Admin/Site.php:188
#: ../../Zotlabs/Module/Settings/Display.php:151
msgid "mobile"
msgstr "mobil"
-#: ../../Zotlabs/Module/Admin/Site.php:188
+#: ../../Zotlabs/Module/Admin/Site.php:190
msgid "experimental"
msgstr "experimentell"
-#: ../../Zotlabs/Module/Admin/Site.php:190
+#: ../../Zotlabs/Module/Admin/Site.php:192
msgid "unsupported"
msgstr "nicht unterstützt"
-#: ../../Zotlabs/Module/Admin/Site.php:236
+#: ../../Zotlabs/Module/Admin/Site.php:238
msgid "Yes - with approval"
msgstr "Ja - mit Zustimmung"
-#: ../../Zotlabs/Module/Admin/Site.php:242
+#: ../../Zotlabs/Module/Admin/Site.php:244
msgid "My site is not a public server"
msgstr "Mein Server ist kein öffentlicher Server"
-#: ../../Zotlabs/Module/Admin/Site.php:243
+#: ../../Zotlabs/Module/Admin/Site.php:245
msgid "My site has paid access only"
msgstr "Meine Seite hat nur bezahlten Zugriff"
-#: ../../Zotlabs/Module/Admin/Site.php:244
+#: ../../Zotlabs/Module/Admin/Site.php:246
msgid "My site has free access only"
msgstr "Meine Seite hat nur freien Zugriff"
-#: ../../Zotlabs/Module/Admin/Site.php:245
+#: ../../Zotlabs/Module/Admin/Site.php:247
msgid "My site offers free accounts with optional paid upgrades"
msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"
-#: ../../Zotlabs/Module/Admin/Site.php:256
+#: ../../Zotlabs/Module/Admin/Site.php:258
msgid "Beginner/Basic"
msgstr "Anfänger/Basis"
-#: ../../Zotlabs/Module/Admin/Site.php:257
+#: ../../Zotlabs/Module/Admin/Site.php:259
msgid "Novice - not skilled but willing to learn"
msgstr "Anfänger - unerfahren, aber bereit zu lernen"
-#: ../../Zotlabs/Module/Admin/Site.php:258
+#: ../../Zotlabs/Module/Admin/Site.php:260
msgid "Intermediate - somewhat comfortable"
msgstr "Fortgeschritten - relativ komfortabel"
-#: ../../Zotlabs/Module/Admin/Site.php:259
+#: ../../Zotlabs/Module/Admin/Site.php:261
msgid "Advanced - very comfortable"
msgstr "Fortgeschritten - sehr komfortabel"
-#: ../../Zotlabs/Module/Admin/Site.php:260
+#: ../../Zotlabs/Module/Admin/Site.php:262
msgid "Expert - I can write computer code"
msgstr "Experte - Ich kann Computercode schreiben"
-#: ../../Zotlabs/Module/Admin/Site.php:261
+#: ../../Zotlabs/Module/Admin/Site.php:263
msgid "Wizard - I probably know more than you do"
msgstr "Zauberer - ich kann wahrscheinlich mehr als Du"
-#: ../../Zotlabs/Module/Admin/Site.php:270 ../../Zotlabs/Widget/Admin.php:22
+#: ../../Zotlabs/Module/Admin/Site.php:272 ../../Zotlabs/Widget/Admin.php:22
msgid "Site"
msgstr "Seite"
-#: ../../Zotlabs/Module/Admin/Site.php:272
+#: ../../Zotlabs/Module/Admin/Site.php:274
#: ../../Zotlabs/Module/Register.php:251
msgid "Registration"
msgstr "Registrierung"
-#: ../../Zotlabs/Module/Admin/Site.php:273
+#: ../../Zotlabs/Module/Admin/Site.php:275
msgid "File upload"
msgstr "Dateiupload"
-#: ../../Zotlabs/Module/Admin/Site.php:274
+#: ../../Zotlabs/Module/Admin/Site.php:276
msgid "Policies"
msgstr "Richtlinien"
-#: ../../Zotlabs/Module/Admin/Site.php:275
+#: ../../Zotlabs/Module/Admin/Site.php:277
#: ../../include/contact_widgets.php:16
msgid "Advanced"
msgstr "Fortgeschritten"
-#: ../../Zotlabs/Module/Admin/Site.php:279
+#: ../../Zotlabs/Module/Admin/Site.php:281
#: ../../addon/statusnet/statusnet.php:890
msgid "Site name"
msgstr "Seitenname"
-#: ../../Zotlabs/Module/Admin/Site.php:281
+#: ../../Zotlabs/Module/Admin/Site.php:283
msgid "Site default technical skill level"
msgstr "Standard-Qualifikationsstufe der Website"
-#: ../../Zotlabs/Module/Admin/Site.php:281
+#: ../../Zotlabs/Module/Admin/Site.php:283
msgid "Used to provide a member experience matched to technical comfort level"
msgstr "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten."
-#: ../../Zotlabs/Module/Admin/Site.php:283
+#: ../../Zotlabs/Module/Admin/Site.php:285
msgid "Lock the technical skill level setting"
msgstr "Sperre die technische Qualifikationsstufe"
-#: ../../Zotlabs/Module/Admin/Site.php:283
+#: ../../Zotlabs/Module/Admin/Site.php:285
msgid "Members can set their own technical comfort level by default"
msgstr "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen"
-#: ../../Zotlabs/Module/Admin/Site.php:285
+#: ../../Zotlabs/Module/Admin/Site.php:287
msgid "Banner/Logo"
msgstr "Banner/Logo"
-#: ../../Zotlabs/Module/Admin/Site.php:286
+#: ../../Zotlabs/Module/Admin/Site.php:288
msgid "Administrator Information"
msgstr "Administrator-Informationen"
-#: ../../Zotlabs/Module/Admin/Site.php:286
+#: ../../Zotlabs/Module/Admin/Site.php:288
msgid ""
"Contact information for site administrators. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."
-#: ../../Zotlabs/Module/Admin/Site.php:287
+#: ../../Zotlabs/Module/Admin/Site.php:289
#: ../../Zotlabs/Module/Siteinfo.php:22
msgid "Site Information"
msgstr "Seiteninformationen"
-#: ../../Zotlabs/Module/Admin/Site.php:287
+#: ../../Zotlabs/Module/Admin/Site.php:289
msgid ""
"Publicly visible description of this site. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr "Öffentlich sichtbare Beschreibung dieses Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann hier verwendet werden."
-#: ../../Zotlabs/Module/Admin/Site.php:288
+#: ../../Zotlabs/Module/Admin/Site.php:290
msgid "System language"
msgstr "System-Sprache"
-#: ../../Zotlabs/Module/Admin/Site.php:289
+#: ../../Zotlabs/Module/Admin/Site.php:291
msgid "System theme"
msgstr "System-Design"
-#: ../../Zotlabs/Module/Admin/Site.php:289
+#: ../../Zotlabs/Module/Admin/Site.php:291
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Standard-System-Design – kann durch Nutzerprofile überschieben werden – <a href='#' id='cnftheme'>Design-Einstellungen ändern</a>"
-#: ../../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 <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -3289,9 +3292,9 @@ msgstr "Einige Berechtigungen werden möglicherweise von den globalen <a href=\"
#: ../../Zotlabs/Module/Settings/Channel.php:67
#: ../../Zotlabs/Module/Settings/Channel.php:70
#: ../../Zotlabs/Module/Settings/Channel.php:81
-#: ../../Zotlabs/Module/Connedit.php:707 ../../Zotlabs/Widget/Affinity.php:28
-#: ../../include/selectors.php:123 ../../include/channel.php:408
-#: ../../include/channel.php:409 ../../include/channel.php:416
+#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:28
+#: ../../include/selectors.php:123 ../../include/channel.php:423
+#: ../../include/channel.php:424 ../../include/channel.php:431
msgid "Friends"
msgstr "Freunde"
@@ -3345,7 +3348,7 @@ msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
#: ../../Zotlabs/Module/Settings/Channel.php:408
-#: ../../Zotlabs/Module/Profile_photo.php:429
+#: ../../Zotlabs/Module/Profile_photo.php:437
#: ../../Zotlabs/Module/Cover_photo.php:365
msgid "or"
msgstr "oder"
@@ -3367,7 +3370,7 @@ msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: ../../Zotlabs/Module/Settings/Channel.php:486
-#: ../../include/channel.php:1373
+#: ../../include/channel.php:1473
msgid "Full Name:"
msgstr "Voller Name:"
@@ -3484,8 +3487,8 @@ msgid "May reduce spam activity"
msgstr "Kann die Spam-Aktivität verringern"
#: ../../Zotlabs/Module/Settings/Channel.php:512
-msgid "Default Access Control List (ACL)"
-msgstr "Standard-Zugriffsberechtigungsliste (ACL)"
+msgid "Default Privacy Group"
+msgstr "Standard-Gruppe"
#: ../../Zotlabs/Module/Settings/Channel.php:514
msgid "Use my default audience setting for the type of object published"
@@ -3738,7 +3741,7 @@ msgid "Expires (yyyy-mm-dd)"
msgstr "Läuft ab (jjjj-mm-tt)"
#: ../../Zotlabs/Module/Settings/Tokens.php:160
-#: ../../Zotlabs/Module/Connedit.php:903
+#: ../../Zotlabs/Module/Connedit.php:907
msgid "Their Settings"
msgstr "Deren Einstellungen"
@@ -3848,107 +3851,107 @@ msgstr "Kein spezielles Design für mobile Geräte"
msgid "%s - (Experimental)"
msgstr "%s – (experimentell)"
-#: ../../Zotlabs/Module/Settings/Display.php:198
+#: ../../Zotlabs/Module/Settings/Display.php:202
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
-#: ../../Zotlabs/Module/Settings/Display.php:199
+#: ../../Zotlabs/Module/Settings/Display.php:203
msgid "Theme Settings"
msgstr "Design-Einstellungen"
-#: ../../Zotlabs/Module/Settings/Display.php:200
+#: ../../Zotlabs/Module/Settings/Display.php:204
msgid "Custom Theme Settings"
msgstr "Benutzerdefinierte Design-Einstellungen"
-#: ../../Zotlabs/Module/Settings/Display.php:201
+#: ../../Zotlabs/Module/Settings/Display.php:205
msgid "Content Settings"
msgstr "Inhaltseinstellungen"
-#: ../../Zotlabs/Module/Settings/Display.php:207
+#: ../../Zotlabs/Module/Settings/Display.php:211
msgid "Display Theme:"
msgstr "Anzeige-Design:"
-#: ../../Zotlabs/Module/Settings/Display.php:208
+#: ../../Zotlabs/Module/Settings/Display.php:212
msgid "Select scheme"
msgstr "Schema wählen"
-#: ../../Zotlabs/Module/Settings/Display.php:210
+#: ../../Zotlabs/Module/Settings/Display.php:214
msgid "Mobile Theme:"
msgstr "Design für mobile Geräte:"
-#: ../../Zotlabs/Module/Settings/Display.php:211
+#: ../../Zotlabs/Module/Settings/Display.php:215
msgid "Preload images before rendering the page"
msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird"
-#: ../../Zotlabs/Module/Settings/Display.php:211
+#: ../../Zotlabs/Module/Settings/Display.php:215
msgid ""
"The subjective page load time will be longer but the page will be ready when"
" displayed"
msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird"
-#: ../../Zotlabs/Module/Settings/Display.php:212
+#: ../../Zotlabs/Module/Settings/Display.php:216
msgid "Enable user zoom on mobile devices"
msgstr "Zoom auf Mobilgeräten aktivieren"
-#: ../../Zotlabs/Module/Settings/Display.php:213
+#: ../../Zotlabs/Module/Settings/Display.php:217
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
-#: ../../Zotlabs/Module/Settings/Display.php:213
+#: ../../Zotlabs/Module/Settings/Display.php:217
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimum 10 Sekunden, kein Maximum"
-#: ../../Zotlabs/Module/Settings/Display.php:214
+#: ../../Zotlabs/Module/Settings/Display.php:218
msgid "Maximum number of conversations to load at any time:"
msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"
-#: ../../Zotlabs/Module/Settings/Display.php:214
+#: ../../Zotlabs/Module/Settings/Display.php:218
msgid "Maximum of 100 items"
msgstr "Maximum: 100 Beiträge"
-#: ../../Zotlabs/Module/Settings/Display.php:215
+#: ../../Zotlabs/Module/Settings/Display.php:219
msgid "Show emoticons (smilies) as images"
msgstr "Emoticons (Smilies) als Bilder anzeigen"
-#: ../../Zotlabs/Module/Settings/Display.php:216
+#: ../../Zotlabs/Module/Settings/Display.php:220
msgid "Manual conversation updates"
msgstr "Manuelle Konversationsaktualisierung"
-#: ../../Zotlabs/Module/Settings/Display.php:216
+#: ../../Zotlabs/Module/Settings/Display.php:220
msgid "Default is on, turning this off may increase screen jumping"
msgstr "Voreinstellung ist An, dies abzuschalten kann das unerwartete Springen der Seitenanzeige erhöhen."
-#: ../../Zotlabs/Module/Settings/Display.php:217
+#: ../../Zotlabs/Module/Settings/Display.php:221
msgid "Link post titles to source"
msgstr "Beitragstitel zum Originalbeitrag verlinken"
-#: ../../Zotlabs/Module/Settings/Display.php:218
+#: ../../Zotlabs/Module/Settings/Display.php:222
msgid "System Page Layout Editor - (advanced)"
msgstr "System-Seitenlayout-Editor (für Experten)"
-#: ../../Zotlabs/Module/Settings/Display.php:221
+#: ../../Zotlabs/Module/Settings/Display.php:225
msgid "Use blog/list mode on channel page"
msgstr "Blog-/Listenmodus auf der Kanalseite verwenden"
-#: ../../Zotlabs/Module/Settings/Display.php:221
-#: ../../Zotlabs/Module/Settings/Display.php:222
+#: ../../Zotlabs/Module/Settings/Display.php:225
+#: ../../Zotlabs/Module/Settings/Display.php:226
msgid "(comments displayed separately)"
msgstr "(Kommentare werden separat angezeigt)"
-#: ../../Zotlabs/Module/Settings/Display.php:222
+#: ../../Zotlabs/Module/Settings/Display.php:226
msgid "Use blog/list mode on grid page"
msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden"
-#: ../../Zotlabs/Module/Settings/Display.php:223
+#: ../../Zotlabs/Module/Settings/Display.php:227
msgid "Channel page max height of content (in pixels)"
msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"
-#: ../../Zotlabs/Module/Settings/Display.php:223
-#: ../../Zotlabs/Module/Settings/Display.php:224
+#: ../../Zotlabs/Module/Settings/Display.php:227
+#: ../../Zotlabs/Module/Settings/Display.php:228
msgid "click to expand content exceeding this height"
msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."
-#: ../../Zotlabs/Module/Settings/Display.php:224
+#: ../../Zotlabs/Module/Settings/Display.php:228
msgid "Grid page max height of content (in pixels)"
msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite"
@@ -4029,20 +4032,20 @@ msgid "Remove authorization"
msgstr "Authorisierung aufheben"
#: ../../Zotlabs/Module/Embedphotos.php:140
-#: ../../Zotlabs/Module/Photos.php:753 ../../Zotlabs/Module/Photos.php:1292
+#: ../../Zotlabs/Module/Photos.php:758 ../../Zotlabs/Module/Photos.php:1297
#: ../../Zotlabs/Widget/Portfolio.php:78 ../../Zotlabs/Widget/Album.php:78
msgid "View Photo"
msgstr "Foto ansehen"
#: ../../Zotlabs/Module/Embedphotos.php:156
-#: ../../Zotlabs/Module/Photos.php:784 ../../Zotlabs/Widget/Portfolio.php:97
+#: ../../Zotlabs/Module/Photos.php:789 ../../Zotlabs/Widget/Portfolio.php:97
#: ../../Zotlabs/Widget/Album.php:95
msgid "Edit Album"
msgstr "Album bearbeiten"
#: ../../Zotlabs/Module/Embedphotos.php:158
-#: ../../Zotlabs/Module/Photos.php:786 ../../Zotlabs/Module/Photos.php:1323
-#: ../../Zotlabs/Module/Profile_photo.php:423
+#: ../../Zotlabs/Module/Photos.php:791 ../../Zotlabs/Module/Photos.php:1328
+#: ../../Zotlabs/Module/Profile_photo.php:431
#: ../../Zotlabs/Module/Cover_photo.php:361
#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:337
#: ../../Zotlabs/Widget/Cdav.php:132 ../../Zotlabs/Widget/Cdav.php:168
@@ -4054,77 +4057,77 @@ msgstr "Hochladen"
msgid "Some blurb about what to do when you're new here"
msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist"
-#: ../../Zotlabs/Module/Thing.php:114
+#: ../../Zotlabs/Module/Thing.php:115
msgid "Thing updated"
msgstr "Sache aktualisiert"
-#: ../../Zotlabs/Module/Thing.php:166
+#: ../../Zotlabs/Module/Thing.php:167
msgid "Object store: failed"
msgstr "Speichern des Objekts fehlgeschlagen"
-#: ../../Zotlabs/Module/Thing.php:170
+#: ../../Zotlabs/Module/Thing.php:171
msgid "Thing added"
msgstr "Sache hinzugefügt"
-#: ../../Zotlabs/Module/Thing.php:196
+#: ../../Zotlabs/Module/Thing.php:197
#, php-format
msgid "OBJ: %1$s %2$s %3$s"
msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../Zotlabs/Module/Thing.php:259
+#: ../../Zotlabs/Module/Thing.php:260
msgid "Show Thing"
msgstr "Sache anzeigen"
-#: ../../Zotlabs/Module/Thing.php:266
+#: ../../Zotlabs/Module/Thing.php:267
msgid "item not found."
msgstr "Eintrag nicht gefunden"
-#: ../../Zotlabs/Module/Thing.php:299
+#: ../../Zotlabs/Module/Thing.php:300
msgid "Edit Thing"
msgstr "Sache bearbeiten"
-#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355
+#: ../../Zotlabs/Module/Thing.php:302 ../../Zotlabs/Module/Thing.php:359
msgid "Select a profile"
msgstr "Wähle ein Profil"
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358
+#: ../../Zotlabs/Module/Thing.php:306 ../../Zotlabs/Module/Thing.php:362
msgid "Post an activity"
msgstr "Aktivitätsnachricht senden"
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358
+#: ../../Zotlabs/Module/Thing.php:306 ../../Zotlabs/Module/Thing.php:362
msgid "Only sends to viewers of the applicable profile"
msgstr "Nur an Betrachter des ausgewählten Profils senden"
-#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360
+#: ../../Zotlabs/Module/Thing.php:308 ../../Zotlabs/Module/Thing.php:364
msgid "Name of thing e.g. something"
msgstr "Name der Sache, z. B. irgendwas"
-#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361
+#: ../../Zotlabs/Module/Thing.php:310 ../../Zotlabs/Module/Thing.php:365
msgid "URL of thing (optional)"
msgstr "URL der Sache (optional)"
-#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362
+#: ../../Zotlabs/Module/Thing.php:312 ../../Zotlabs/Module/Thing.php:366
msgid "URL for photo of thing (optional)"
msgstr "URL eines Fotos der Sache (optional)"
-#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363
-#: ../../Zotlabs/Module/Photos.php:649 ../../Zotlabs/Module/Photos.php:1013
-#: ../../Zotlabs/Module/Connedit.php:672 ../../Zotlabs/Module/Chat.php:235
+#: ../../Zotlabs/Module/Thing.php:314 ../../Zotlabs/Module/Thing.php:367
+#: ../../Zotlabs/Module/Photos.php:649 ../../Zotlabs/Module/Photos.php:1018
+#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235
#: ../../Zotlabs/Module/Filestorage.php:142
#: ../../include/acl_selectors.php:218
msgid "Permissions"
msgstr "Berechtigungen"
-#: ../../Zotlabs/Module/Thing.php:353
+#: ../../Zotlabs/Module/Thing.php:357
msgid "Add Thing to your Profile"
msgstr "Die Sache Deinem Profil hinzufügen"
-#: ../../Zotlabs/Module/Notify.php:57
+#: ../../Zotlabs/Module/Notify.php:61
#: ../../Zotlabs/Module/Notifications.php:38
msgid "No more system notifications."
msgstr "Keine System-Benachrichtigungen mehr."
-#: ../../Zotlabs/Module/Notify.php:61
+#: ../../Zotlabs/Module/Notify.php:65
#: ../../Zotlabs/Module/Notifications.php:42
msgid "System Notifications"
msgstr "System-Benachrichtigungen"
@@ -4142,43 +4145,43 @@ msgstr "Dein Vertrag erlaubt nur %d Kanäle."
msgid "No channel. Import failed."
msgstr "Kein Kanal. Import fehlgeschlagen."
-#: ../../Zotlabs/Module/Import.php:470
+#: ../../Zotlabs/Module/Import.php:481
#: ../../addon/diaspora/import_diaspora.php:142
msgid "Import completed."
msgstr "Import abgeschlossen."
-#: ../../Zotlabs/Module/Import.php:498
+#: ../../Zotlabs/Module/Import.php:509
msgid "You must be logged in to use this feature."
msgstr "Du musst angemeldet sein um diese Funktion zu nutzen."
-#: ../../Zotlabs/Module/Import.php:503
+#: ../../Zotlabs/Module/Import.php:514
msgid "Import Channel"
msgstr "Kanal importieren"
-#: ../../Zotlabs/Module/Import.php:504
+#: ../../Zotlabs/Module/Import.php:515
msgid ""
"Use this form to import an existing channel from a different server/hub. You"
" may retrieve the channel identity from the old server/hub via the network "
"or provide an export file."
msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."
-#: ../../Zotlabs/Module/Import.php:506
+#: ../../Zotlabs/Module/Import.php:517
msgid "Or provide the old server/hub details"
msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein"
-#: ../../Zotlabs/Module/Import.php:507
+#: ../../Zotlabs/Module/Import.php:518
msgid "Your old identity address (xyz@example.com)"
msgstr "Bisherige Kanal-Adresse (xyz@example.com)"
-#: ../../Zotlabs/Module/Import.php:508
+#: ../../Zotlabs/Module/Import.php:519
msgid "Your old login email address"
msgstr "Deine alte Login-E-Mail-Adresse"
-#: ../../Zotlabs/Module/Import.php:509
+#: ../../Zotlabs/Module/Import.php:520
msgid "Your old login password"
msgstr "Dein altes Passwort"
-#: ../../Zotlabs/Module/Import.php:510
+#: ../../Zotlabs/Module/Import.php:521
msgid ""
"For either option, please choose whether to make this hub your new primary "
"address, or whether your old location should continue this role. You will be"
@@ -4186,19 +4189,19 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."
-#: ../../Zotlabs/Module/Import.php:511
+#: ../../Zotlabs/Module/Import.php:522
msgid "Make this hub my primary location"
msgstr "Dieser $Pojectname-Hub ist mein primärer Hub."
-#: ../../Zotlabs/Module/Import.php:512
+#: ../../Zotlabs/Module/Import.php:523
msgid "Move this channel (disable all previous locations)"
msgstr "Verschiebe diesen Kanal (deaktiviere alle vorherigen Adressen/Klone)"
-#: ../../Zotlabs/Module/Import.php:513
+#: ../../Zotlabs/Module/Import.php:524
msgid "Import a few months of posts if possible (limited by available memory"
msgstr "Importiere die Beiträge einiger Monate, sofern möglich (beschränkt durch verfügbaren Speicher)"
-#: ../../Zotlabs/Module/Import.php:514
+#: ../../Zotlabs/Module/Import.php:525
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -4208,21 +4211,22 @@ msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur
msgid "Authentication failed."
msgstr "Authentifizierung fehlgeschlagen."
-#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:2102
+#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1640
+#: ../../include/channel.php:2204
msgid "Remote Authentication"
msgstr "Entfernte Authentifizierung"
-#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2103
+#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2205
msgid "Enter your channel address (e.g. channel@example.com)"
msgstr "Deine Kanal-Adresse (z. B. channel@example.com)"
-#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2104
+#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2206
msgid "Authenticate"
msgstr "Authentifizieren"
#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Chanview.php:96
#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Wall_upload.php:31
-#: ../../Zotlabs/Module/Block.php:41
+#: ../../Zotlabs/Module/Block.php:41 ../../Zotlabs/Module/Card_edit.php:44
msgid "Channel not found."
msgstr "Kanal nicht gefunden."
@@ -4230,7 +4234,7 @@ msgstr "Kanal nicht gefunden."
msgid "Permissions denied."
msgstr "Berechtigung verweigert."
-#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2304
+#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2312
msgid "Import"
msgstr "Import"
@@ -4258,11 +4262,13 @@ msgstr "Element nicht verfügbar."
#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207
#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288
-#: ../../Zotlabs/Module/Mail.php:430 ../../include/conversation.php:1225
+#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101
+#: ../../include/conversation.php:1261
msgid "Insert web link"
msgstr "Link einfügen"
-#: ../../Zotlabs/Module/Editblock.php:129 ../../include/conversation.php:1336
+#: ../../Zotlabs/Module/Editblock.php:129
+#: ../../Zotlabs/Module/Card_edit.php:117 ../../include/conversation.php:1381
msgid "Title (optional)"
msgstr "Titel (optional)"
@@ -4274,15 +4280,15 @@ msgstr "Block bearbeiten"
msgid "vcard"
msgstr "VCard"
-#: ../../Zotlabs/Module/Apps.php:45 ../../Zotlabs/Lib/Apps.php:224
+#: ../../Zotlabs/Module/Apps.php:47 ../../Zotlabs/Lib/Apps.php:223
msgid "Apps"
msgstr "Apps"
-#: ../../Zotlabs/Module/Apps.php:48
+#: ../../Zotlabs/Module/Apps.php:50
msgid "Manage apps"
msgstr "Apps verwalten"
-#: ../../Zotlabs/Module/Apps.php:49
+#: ../../Zotlabs/Module/Apps.php:51
msgid "Create new app"
msgstr "Neue App erstellen"
@@ -4292,8 +4298,7 @@ msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s ist %2$s"
-#: ../../Zotlabs/Module/Mood.php:120 ../../Zotlabs/Module/Mood.php:135
-#: ../../Zotlabs/Lib/Apps.php:247
+#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:247
msgid "Mood"
msgstr "Laune"
@@ -4301,12 +4306,6 @@ msgstr "Laune"
msgid "Set your current mood and tell your friends"
msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"
-#: ../../Zotlabs/Module/Connections.php:33
-#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229
-#: ../../include/text.php:951 ../../include/nav.php:180
-msgid "Connections"
-msgstr "Verbindungen"
-
#: ../../Zotlabs/Module/Connections.php:54
#: ../../Zotlabs/Module/Connections.php:156
#: ../../Zotlabs/Module/Connections.php:245
@@ -4332,17 +4331,18 @@ msgstr "Archiviert/Unerreichbar"
#: ../../Zotlabs/Module/Connections.php:74
#: ../../Zotlabs/Module/Connections.php:83 ../../Zotlabs/Module/Menu.php:116
-#: ../../include/conversation.php:1663
+#: ../../include/conversation.php:1697
msgid "New"
msgstr "Neu"
#: ../../Zotlabs/Module/Connections.php:88
#: ../../Zotlabs/Module/Connections.php:102
-#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:30
+#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:30
msgid "All"
msgstr "Alle"
#: ../../Zotlabs/Module/Connections.php:133
+#: ../../Zotlabs/Widget/Notifications.php:80
msgid "New Connections"
msgstr "Neue Verbindungen"
@@ -4424,7 +4424,7 @@ msgid "Ignore connection"
msgstr "Verbindung ignorieren"
#: ../../Zotlabs/Module/Connections.php:284
-#: ../../Zotlabs/Module/Connedit.php:626
+#: ../../Zotlabs/Module/Connedit.php:630
msgid "Ignore"
msgstr "Ignorieren"
@@ -4432,6 +4432,11 @@ msgstr "Ignorieren"
msgid "Recent activity"
msgstr "Kürzliche Aktivitäten"
+#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229
+#: ../../include/text.php:959 ../../include/nav.php:107
+msgid "Connections"
+msgstr "Verbindungen"
+
#: ../../Zotlabs/Module/Connections.php:314
msgid "Search your connections"
msgstr "Verbindungen durchsuchen"
@@ -4454,10 +4459,6 @@ msgstr "Beitrag"
msgid "Source of Item"
msgstr "Quelle des Elements"
-#: ../../Zotlabs/Module/Bookmarks.php:11 ../../Zotlabs/Lib/Apps.php:227
-msgid "View Bookmarks"
-msgstr "Lesezeichen ansehen"
-
#: ../../Zotlabs/Module/Bookmarks.php:56
msgid "Bookmark added"
msgstr "Lesezeichen hinzugefügt"
@@ -4510,7 +4511,7 @@ msgstr "Album nicht gefunden."
msgid "Delete Album"
msgstr "Album löschen"
-#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1025
+#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1030
msgid "Delete Photo"
msgstr "Foto löschen"
@@ -4522,12 +4523,6 @@ msgstr "Keine Fotos ausgewählt"
msgid "Access to this item is restricted."
msgstr "Der Zugriff auf dieses Foto ist eingeschränkt."
-#: ../../Zotlabs/Module/Photos.php:558 ../../Zotlabs/Module/Fbrowser.php:29
-#: ../../Zotlabs/Lib/Apps.php:242 ../../include/conversation.php:1780
-#: ../../include/nav.php:378
-msgid "Photos"
-msgstr "Fotos"
-
#: ../../Zotlabs/Module/Photos.php:593
#, php-format
msgid "%1$.2f MB of %2$.2f MB photo storage used."
@@ -4562,192 +4557,192 @@ msgstr "Beschriftung (optional):"
msgid "Description (optional):"
msgstr "Beschreibung (optional):"
-#: ../../Zotlabs/Module/Photos.php:727
+#: ../../Zotlabs/Module/Photos.php:732
msgid "Show Newest First"
msgstr "Neueste zuerst anzeigen"
-#: ../../Zotlabs/Module/Photos.php:729
+#: ../../Zotlabs/Module/Photos.php:734
msgid "Show Oldest First"
msgstr "Älteste zuerst anzeigen"
-#: ../../Zotlabs/Module/Photos.php:834
+#: ../../Zotlabs/Module/Photos.php:839
msgid "Permission denied. Access to this item may be restricted."
msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
-#: ../../Zotlabs/Module/Photos.php:836
+#: ../../Zotlabs/Module/Photos.php:841
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
-#: ../../Zotlabs/Module/Photos.php:894
+#: ../../Zotlabs/Module/Photos.php:899
msgid "Use as profile photo"
msgstr "Als Profilfoto verwenden"
-#: ../../Zotlabs/Module/Photos.php:895
+#: ../../Zotlabs/Module/Photos.php:900
msgid "Use as cover photo"
msgstr "Als Titelbild verwenden"
-#: ../../Zotlabs/Module/Photos.php:902
+#: ../../Zotlabs/Module/Photos.php:907
msgid "Private Photo"
msgstr "Privates Foto"
-#: ../../Zotlabs/Module/Photos.php:917
+#: ../../Zotlabs/Module/Photos.php:922
msgid "View Full Size"
msgstr "In voller Größe anzeigen"
-#: ../../Zotlabs/Module/Photos.php:999
+#: ../../Zotlabs/Module/Photos.php:1004
msgid "Edit photo"
msgstr "Foto bearbeiten"
-#: ../../Zotlabs/Module/Photos.php:1001
+#: ../../Zotlabs/Module/Photos.php:1006
msgid "Rotate CW (right)"
msgstr "Drehen im UZS (rechts)"
-#: ../../Zotlabs/Module/Photos.php:1002
+#: ../../Zotlabs/Module/Photos.php:1007
msgid "Rotate CCW (left)"
msgstr "Drehen gegen UZS (links)"
-#: ../../Zotlabs/Module/Photos.php:1005
+#: ../../Zotlabs/Module/Photos.php:1010
msgid "Move photo to album"
msgstr "Foto in Album verschieben"
-#: ../../Zotlabs/Module/Photos.php:1006
+#: ../../Zotlabs/Module/Photos.php:1011
msgid "Enter a new album name"
msgstr "Gib einen Namen für ein neues Album ein"
-#: ../../Zotlabs/Module/Photos.php:1007
+#: ../../Zotlabs/Module/Photos.php:1012
msgid "or select an existing one (doubleclick)"
msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)"
-#: ../../Zotlabs/Module/Photos.php:1010
+#: ../../Zotlabs/Module/Photos.php:1015
msgid "Caption"
msgstr "Bildunterschrift"
-#: ../../Zotlabs/Module/Photos.php:1012
+#: ../../Zotlabs/Module/Photos.php:1017
msgid "Add a Tag"
msgstr "Schlagwort hinzufügen"
-#: ../../Zotlabs/Module/Photos.php:1020
+#: ../../Zotlabs/Module/Photos.php:1025
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"
-#: ../../Zotlabs/Module/Photos.php:1023
+#: ../../Zotlabs/Module/Photos.php:1028
msgid "Flag as adult in album view"
msgstr "In der Albumansicht als nicht jugendfrei markieren"
-#: ../../Zotlabs/Module/Photos.php:1042 ../../Zotlabs/Lib/ThreadItem.php:267
+#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Lib/ThreadItem.php:271
msgid "I like this (toggle)"
msgstr "Mir gefällt das (Umschalter)"
-#: ../../Zotlabs/Module/Photos.php:1043 ../../Zotlabs/Lib/ThreadItem.php:268
+#: ../../Zotlabs/Module/Photos.php:1048 ../../Zotlabs/Lib/ThreadItem.php:272
msgid "I don't like this (toggle)"
msgstr "Mir gefällt das nicht (Umschalter)"
-#: ../../Zotlabs/Module/Photos.php:1045 ../../Zotlabs/Lib/ThreadItem.php:410
-#: ../../include/conversation.php:736
+#: ../../Zotlabs/Module/Photos.php:1050 ../../Zotlabs/Lib/ThreadItem.php:416
+#: ../../include/conversation.php:768
msgid "Please wait"
msgstr "Bitte warten"
-#: ../../Zotlabs/Module/Photos.php:1061 ../../Zotlabs/Module/Photos.php:1179
-#: ../../Zotlabs/Lib/ThreadItem.php:727
+#: ../../Zotlabs/Module/Photos.php:1066 ../../Zotlabs/Module/Photos.php:1184
+#: ../../Zotlabs/Lib/ThreadItem.php:740
msgid "This is you"
msgstr "Das bist Du"
-#: ../../Zotlabs/Module/Photos.php:1063 ../../Zotlabs/Module/Photos.php:1181
-#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/js_strings.php:6
+#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Photos.php:1186
+#: ../../Zotlabs/Lib/ThreadItem.php:742 ../../include/js_strings.php:6
msgid "Comment"
msgstr "Kommentar"
-#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:569
+#: ../../Zotlabs/Module/Photos.php:1084 ../../include/conversation.php:594
msgctxt "title"
msgid "Likes"
msgstr "Gefällt mir"
-#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:569
+#: ../../Zotlabs/Module/Photos.php:1084 ../../include/conversation.php:594
msgctxt "title"
msgid "Dislikes"
msgstr "Gefällt mir nicht"
-#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570
+#: ../../Zotlabs/Module/Photos.php:1085 ../../include/conversation.php:595
msgctxt "title"
msgid "Agree"
msgstr "Zustimmungen"
-#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570
+#: ../../Zotlabs/Module/Photos.php:1085 ../../include/conversation.php:595
msgctxt "title"
msgid "Disagree"
msgstr "Ablehnungen"
-#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570
+#: ../../Zotlabs/Module/Photos.php:1085 ../../include/conversation.php:595
msgctxt "title"
msgid "Abstain"
msgstr "Enthaltungen"
-#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571
+#: ../../Zotlabs/Module/Photos.php:1086 ../../include/conversation.php:596
msgctxt "title"
msgid "Attending"
msgstr "Zusagen"
-#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571
+#: ../../Zotlabs/Module/Photos.php:1086 ../../include/conversation.php:596
msgctxt "title"
msgid "Not attending"
msgstr "Absagen"
-#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571
+#: ../../Zotlabs/Module/Photos.php:1086 ../../include/conversation.php:596
msgctxt "title"
msgid "Might attend"
msgstr "Vielleicht"
-#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1110
-#: ../../Zotlabs/Lib/ThreadItem.php:187 ../../Zotlabs/Lib/ThreadItem.php:199
+#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Module/Photos.php:1115
+#: ../../Zotlabs/Lib/ThreadItem.php:191 ../../Zotlabs/Lib/ThreadItem.php:203
msgid "View all"
msgstr "Alles anzeigen"
-#: ../../Zotlabs/Module/Photos.php:1102 ../../Zotlabs/Lib/ThreadItem.php:191
-#: ../../include/conversation.php:1904 ../../include/channel.php:1391
-#: ../../include/taxonomy.php:442
+#: ../../Zotlabs/Module/Photos.php:1107 ../../Zotlabs/Lib/ThreadItem.php:195
+#: ../../include/conversation.php:1950 ../../include/channel.php:1491
+#: ../../include/taxonomy.php:520
msgctxt "noun"
msgid "Like"
msgid_plural "Likes"
msgstr[0] "Gefällt mir"
msgstr[1] "Gefällt mir"
-#: ../../Zotlabs/Module/Photos.php:1107 ../../Zotlabs/Lib/ThreadItem.php:196
-#: ../../include/conversation.php:1907
+#: ../../Zotlabs/Module/Photos.php:1112 ../../Zotlabs/Lib/ThreadItem.php:200
+#: ../../include/conversation.php:1953
msgctxt "noun"
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "Gefällt nicht"
msgstr[1] "Gefällt nicht"
-#: ../../Zotlabs/Module/Photos.php:1207
+#: ../../Zotlabs/Module/Photos.php:1212
msgid "Photo Tools"
msgstr "Fotowerkzeuge"
-#: ../../Zotlabs/Module/Photos.php:1216
+#: ../../Zotlabs/Module/Photos.php:1221
msgid "In This Photo:"
msgstr "Auf diesem Foto:"
-#: ../../Zotlabs/Module/Photos.php:1221
+#: ../../Zotlabs/Module/Photos.php:1226
msgid "Map"
msgstr "Karte"
-#: ../../Zotlabs/Module/Photos.php:1229 ../../Zotlabs/Lib/ThreadItem.php:399
+#: ../../Zotlabs/Module/Photos.php:1234 ../../Zotlabs/Lib/ThreadItem.php:404
msgctxt "noun"
msgid "Likes"
msgstr "Gefällt mir"
-#: ../../Zotlabs/Module/Photos.php:1230 ../../Zotlabs/Lib/ThreadItem.php:400
+#: ../../Zotlabs/Module/Photos.php:1235 ../../Zotlabs/Lib/ThreadItem.php:405
msgctxt "noun"
msgid "Dislikes"
msgstr "Gefällt nicht"
-#: ../../Zotlabs/Module/Photos.php:1235 ../../Zotlabs/Lib/ThreadItem.php:405
+#: ../../Zotlabs/Module/Photos.php:1240 ../../Zotlabs/Lib/ThreadItem.php:410
#: ../../include/acl_selectors.php:220
msgid "Close"
msgstr "Schließen"
-#: ../../Zotlabs/Module/Photos.php:1307 ../../Zotlabs/Module/Photos.php:1320
-#: ../../Zotlabs/Module/Photos.php:1321 ../../include/photos.php:526
+#: ../../Zotlabs/Module/Photos.php:1312 ../../Zotlabs/Module/Photos.php:1325
+#: ../../Zotlabs/Module/Photos.php:1326 ../../include/photos.php:601
msgid "Recent Photos"
msgstr "Neueste Fotos"
@@ -4763,165 +4758,206 @@ msgstr "Nicht gefunden"
msgid "Invalid channel"
msgstr "Ungültiger Kanal"
-#: ../../Zotlabs/Module/Wiki.php:79 ../../Zotlabs/Lib/Apps.php:239
-#: ../../include/conversation.php:1854 ../../include/features.php:95
-#: ../../include/nav.php:451
-msgid "Wiki"
-msgstr "Wiki"
+#: ../../Zotlabs/Module/Wiki.php:124 ../../addon/gitwiki/Mod_Gitwiki.php:107
+msgid "Error retrieving wiki"
+msgstr "Fehler beim Abrufen des Wiki"
+
+#: ../../Zotlabs/Module/Wiki.php:131 ../../addon/gitwiki/Mod_Gitwiki.php:114
+msgid "Error creating zip file export folder"
+msgstr "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses "
-#: ../../Zotlabs/Module/Wiki.php:162 ../../addon/gitwiki/Mod_Gitwiki.php:146
-#: ../../include/conversation.php:1851 ../../include/nav.php:448
+#: ../../Zotlabs/Module/Wiki.php:182 ../../addon/gitwiki/Mod_Gitwiki.php:132
+msgid "Error downloading wiki: "
+msgstr "Fehler beim Herunterladen des Wiki:"
+
+#: ../../Zotlabs/Module/Wiki.php:197 ../../addon/gitwiki/Mod_Gitwiki.php:146
+#: ../../include/conversation.php:1897 ../../include/nav.php:504
msgid "Wikis"
msgstr "Wikis"
-#: ../../Zotlabs/Module/Wiki.php:168 ../../addon/gitwiki/Mod_Gitwiki.php:152
+#: ../../Zotlabs/Module/Wiki.php:203 ../../addon/gitwiki/Mod_Gitwiki.php:152
msgid "Download"
msgstr "Herunterladen"
-#: ../../Zotlabs/Module/Wiki.php:170 ../../Zotlabs/Module/Chat.php:256
+#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256
#: ../../Zotlabs/Module/Profiles.php:834 ../../Zotlabs/Module/Manage.php:145
#: ../../addon/gitwiki/Mod_Gitwiki.php:154
msgid "Create New"
msgstr "Neu anlegen"
-#: ../../Zotlabs/Module/Wiki.php:172 ../../addon/gitwiki/Mod_Gitwiki.php:156
+#: ../../Zotlabs/Module/Wiki.php:207 ../../addon/gitwiki/Mod_Gitwiki.php:156
msgid "Wiki name"
msgstr "Name des Wiki"
-#: ../../Zotlabs/Module/Wiki.php:173 ../../addon/gitwiki/Mod_Gitwiki.php:157
+#: ../../Zotlabs/Module/Wiki.php:208 ../../addon/gitwiki/Mod_Gitwiki.php:157
msgid "Content type"
msgstr "Inhaltstyp"
-#: ../../Zotlabs/Module/Wiki.php:175 ../../Zotlabs/Storage/Browser.php:235
+#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:336
+#: ../../Zotlabs/Widget/Wiki_pages.php:57 ../../include/text.php:1802
+msgid "Markdown"
+msgstr "Markdown"
+
+#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:336
+#: ../../Zotlabs/Widget/Wiki_pages.php:57 ../../include/text.php:1800
+msgid "BBcode"
+msgstr "BBcode"
+
+#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:57
+#: ../../include/text.php:1803
+msgid "Text"
+msgstr "Text"
+
+#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:235
#: ../../addon/gitwiki/Mod_Gitwiki.php:159
msgid "Type"
msgstr "Typ"
-#: ../../Zotlabs/Module/Wiki.php:182 ../../addon/gitwiki/Mod_Gitwiki.php:166
+#: ../../Zotlabs/Module/Wiki.php:211
+msgid "Any&nbsp;type"
+msgstr "Alle&nbsp;Arten"
+
+#: ../../Zotlabs/Module/Wiki.php:218
+msgid "Lock content type"
+msgstr "Inhaltstyp sperren"
+
+#: ../../Zotlabs/Module/Wiki.php:219 ../../addon/gitwiki/Mod_Gitwiki.php:166
msgid "Create a status post for this wiki"
msgstr "Erzeuge einen Statusbeitrag für dieses Wiki"
-#: ../../Zotlabs/Module/Wiki.php:224 ../../addon/gitwiki/Mod_Gitwiki.php:185
+#: ../../Zotlabs/Module/Wiki.php:220
+msgid "Edit Wiki Name"
+msgstr "Wiki-Namen bearbeiten"
+
+#: ../../Zotlabs/Module/Wiki.php:262 ../../addon/gitwiki/Mod_Gitwiki.php:185
msgid "Wiki not found"
msgstr "Wiki nicht gefunden"
-#: ../../Zotlabs/Module/Wiki.php:248 ../../addon/gitwiki/Mod_Gitwiki.php:210
+#: ../../Zotlabs/Module/Wiki.php:286 ../../addon/gitwiki/Mod_Gitwiki.php:210
msgid "Rename page"
msgstr "Seite umbenennen"
-#: ../../Zotlabs/Module/Wiki.php:258 ../../addon/gitwiki/Mod_Gitwiki.php:214
+#: ../../Zotlabs/Module/Wiki.php:296 ../../addon/gitwiki/Mod_Gitwiki.php:214
msgid "Error retrieving page content"
msgstr "Fehler beim Abrufen des Seiteninhalts"
-#: ../../Zotlabs/Module/Wiki.php:264
+#: ../../Zotlabs/Module/Wiki.php:302 ../../Zotlabs/Module/Wiki.php:304
msgid "New page"
msgstr "Neue Seite"
-#: ../../Zotlabs/Module/Wiki.php:288 ../../addon/gitwiki/Mod_Gitwiki.php:242
+#: ../../Zotlabs/Module/Wiki.php:331 ../../addon/gitwiki/Mod_Gitwiki.php:242
msgid "Revision Comparison"
msgstr "Revisionsvergleich"
-#: ../../Zotlabs/Module/Wiki.php:289 ../../addon/gitwiki/Mod_Gitwiki.php:243
+#: ../../Zotlabs/Module/Wiki.php:332 ../../addon/gitwiki/Mod_Gitwiki.php:243
msgid "Revert"
msgstr "Rückgängig machen"
-#: ../../Zotlabs/Module/Wiki.php:293
+#: ../../Zotlabs/Module/Wiki.php:339
msgid "Short description of your changes (optional)"
msgstr "Kurze Beschreibung Ihrer Änderungen (optional)"
-#: ../../Zotlabs/Module/Wiki.php:300 ../../addon/gitwiki/Mod_Gitwiki.php:252
+#: ../../Zotlabs/Module/Wiki.php:346 ../../addon/gitwiki/Mod_Gitwiki.php:252
msgid "Source"
msgstr "Quelle"
-#: ../../Zotlabs/Module/Wiki.php:309 ../../addon/gitwiki/Mod_Gitwiki.php:260
+#: ../../Zotlabs/Module/Wiki.php:356 ../../addon/gitwiki/Mod_Gitwiki.php:260
msgid "New page name"
msgstr "Neuer Seitenname"
-#: ../../Zotlabs/Module/Wiki.php:314 ../../addon/gitwiki/Mod_Gitwiki.php:265
-#: ../../include/conversation.php:1229
+#: ../../Zotlabs/Module/Wiki.php:361 ../../addon/gitwiki/Mod_Gitwiki.php:265
+#: ../../include/conversation.php:1265
msgid "Embed image from photo albums"
msgstr "Bild aus Fotoalben einbetten"
-#: ../../Zotlabs/Module/Wiki.php:315 ../../addon/gitwiki/Mod_Gitwiki.php:266
-#: ../../include/conversation.php:1323
+#: ../../Zotlabs/Module/Wiki.php:362 ../../addon/gitwiki/Mod_Gitwiki.php:266
+#: ../../include/conversation.php:1368
msgid "Embed an image from your albums"
msgstr "Betten Sie ein Bild aus Ihren Alben ein"
-#: ../../Zotlabs/Module/Wiki.php:317 ../../addon/gitwiki/Mod_Gitwiki.php:268
-#: ../../include/conversation.php:1325 ../../include/conversation.php:1372
+#: ../../Zotlabs/Module/Wiki.php:364 ../../addon/gitwiki/Mod_Gitwiki.php:268
+#: ../../include/conversation.php:1370 ../../include/conversation.php:1417
msgid "OK"
msgstr "Ok"
-#: ../../Zotlabs/Module/Wiki.php:318 ../../addon/gitwiki/Mod_Gitwiki.php:269
-#: ../../include/conversation.php:1265
+#: ../../Zotlabs/Module/Wiki.php:365 ../../addon/gitwiki/Mod_Gitwiki.php:269
+#: ../../include/conversation.php:1301
msgid "Choose images to embed"
msgstr "Wählen Sie Bilder zum Einbetten aus"
-#: ../../Zotlabs/Module/Wiki.php:319 ../../addon/gitwiki/Mod_Gitwiki.php:270
-#: ../../include/conversation.php:1266
+#: ../../Zotlabs/Module/Wiki.php:366 ../../addon/gitwiki/Mod_Gitwiki.php:270
+#: ../../include/conversation.php:1302
msgid "Choose an album"
msgstr "Wählen Sie ein Album aus"
-#: ../../Zotlabs/Module/Wiki.php:320 ../../addon/gitwiki/Mod_Gitwiki.php:271
+#: ../../Zotlabs/Module/Wiki.php:367 ../../addon/gitwiki/Mod_Gitwiki.php:271
msgid "Choose a different album"
msgstr "Wählen Sie ein anderes Album aus"
-#: ../../Zotlabs/Module/Wiki.php:321 ../../addon/gitwiki/Mod_Gitwiki.php:272
-#: ../../include/conversation.php:1268
+#: ../../Zotlabs/Module/Wiki.php:368 ../../addon/gitwiki/Mod_Gitwiki.php:272
+#: ../../include/conversation.php:1304
msgid "Error getting album list"
msgstr "Fehler beim Holen der Albenliste"
-#: ../../Zotlabs/Module/Wiki.php:322 ../../addon/gitwiki/Mod_Gitwiki.php:273
-#: ../../include/conversation.php:1269
+#: ../../Zotlabs/Module/Wiki.php:369 ../../addon/gitwiki/Mod_Gitwiki.php:273
+#: ../../include/conversation.php:1305
msgid "Error getting photo link"
msgstr "Fehler beim Holen des Fotolinks"
-#: ../../Zotlabs/Module/Wiki.php:323 ../../addon/gitwiki/Mod_Gitwiki.php:274
-#: ../../include/conversation.php:1270
+#: ../../Zotlabs/Module/Wiki.php:370 ../../addon/gitwiki/Mod_Gitwiki.php:274
+#: ../../include/conversation.php:1306
msgid "Error getting album"
msgstr "Fehler beim Holen des Albums"
-#: ../../Zotlabs/Module/Wiki.php:391 ../../addon/gitwiki/Mod_Gitwiki.php:337
+#: ../../Zotlabs/Module/Wiki.php:442 ../../addon/gitwiki/Mod_Gitwiki.php:337
msgid "Error creating wiki. Invalid name."
msgstr "Fehler beim Erstellen des Wiki. Ungültiger Name."
-#: ../../Zotlabs/Module/Wiki.php:398
+#: ../../Zotlabs/Module/Wiki.php:449
msgid "A wiki with this name already exists."
msgstr "Es existiert bereits ein Wiki mit diesem Namen."
-#: ../../Zotlabs/Module/Wiki.php:411 ../../addon/gitwiki/Mod_Gitwiki.php:348
+#: ../../Zotlabs/Module/Wiki.php:462 ../../addon/gitwiki/Mod_Gitwiki.php:348
msgid "Wiki created, but error creating Home page."
msgstr "Das Wiki wurde erzeugt, aber es gab einen Fehler bei der Erstellung der Startseite"
-#: ../../Zotlabs/Module/Wiki.php:418 ../../addon/gitwiki/Mod_Gitwiki.php:353
+#: ../../Zotlabs/Module/Wiki.php:469 ../../addon/gitwiki/Mod_Gitwiki.php:353
msgid "Error creating wiki"
msgstr "Fehler beim Erstellen des Wiki"
-#: ../../Zotlabs/Module/Wiki.php:430
+#: ../../Zotlabs/Module/Wiki.php:492
+msgid "Error updating wiki. Invalid name."
+msgstr "Fehler beim Aktualisieren des Wikis. Ungültiger Name."
+
+#: ../../Zotlabs/Module/Wiki.php:512
+msgid "Error updating wiki"
+msgstr "Fehler beim Aktualisieren des Wikis"
+
+#: ../../Zotlabs/Module/Wiki.php:527
msgid "Wiki delete permission denied."
msgstr "Wiki-Löschberechtigung verweigert."
-#: ../../Zotlabs/Module/Wiki.php:440
+#: ../../Zotlabs/Module/Wiki.php:537
msgid "Error deleting wiki"
msgstr "Fehler beim Löschen des Wiki"
-#: ../../Zotlabs/Module/Wiki.php:466 ../../addon/gitwiki/Mod_Gitwiki.php:400
+#: ../../Zotlabs/Module/Wiki.php:565 ../../addon/gitwiki/Mod_Gitwiki.php:400
msgid "New page created"
msgstr "Neue Seite erstellt"
-#: ../../Zotlabs/Module/Wiki.php:587
+#: ../../Zotlabs/Module/Wiki.php:686
msgid "Cannot delete Home"
msgstr "Kann die Startseite nicht löschen"
-#: ../../Zotlabs/Module/Wiki.php:651
+#: ../../Zotlabs/Module/Wiki.php:750
msgid "Current Revision"
msgstr "Aktuelle Revision"
-#: ../../Zotlabs/Module/Wiki.php:651
+#: ../../Zotlabs/Module/Wiki.php:750
msgid "Selected Revision"
msgstr "Ausgewählte Revision"
-#: ../../Zotlabs/Module/Wiki.php:701
+#: ../../Zotlabs/Module/Wiki.php:800
msgid "You must be authenticated."
msgstr "Sie müssen authenzifiziert sein."
@@ -4937,24 +4973,36 @@ msgstr "Layout aktualisiert."
msgid "Feature disabled."
msgstr "Funktion deaktiviert."
-#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69
+#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:88
msgid "Edit System Page Description"
msgstr "Systemseitenbeschreibung bearbeiten"
-#: ../../Zotlabs/Module/Pdledit.php:64
+#: ../../Zotlabs/Module/Pdledit.php:68
+msgid "(modified)"
+msgstr "(geändert)"
+
+#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#: ../../Zotlabs/Module/Pdledit.php:83
msgid "Layout not found."
msgstr "Layout nicht gefunden."
-#: ../../Zotlabs/Module/Pdledit.php:70
+#: ../../Zotlabs/Module/Pdledit.php:89
msgid "Module Name:"
msgstr "Modulname:"
-#: ../../Zotlabs/Module/Pdledit.php:71
+#: ../../Zotlabs/Module/Pdledit.php:90
msgid "Layout Help"
msgstr "Layout-Hilfe"
-#: ../../Zotlabs/Module/Poke.php:153 ../../Zotlabs/Module/Poke.php:182
-#: ../../Zotlabs/Lib/Apps.php:248 ../../include/conversation.php:1039
+#: ../../Zotlabs/Module/Pdledit.php:91
+msgid "Edit another layout"
+msgstr "Ein weiteres Layout bearbeiten"
+
+#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:248
+#: ../../include/conversation.php:1075
msgid "Poke"
msgstr "Anstupsen"
@@ -4988,8 +5036,8 @@ msgid "Image uploaded but image cropping failed."
msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."
#: ../../Zotlabs/Module/Profile_photo.php:115
-#: ../../Zotlabs/Module/Profile_photo.php:226
-#: ../../include/photo/photo_driver.php:658
+#: ../../Zotlabs/Module/Profile_photo.php:234
+#: ../../include/photo/photo_driver.php:710
msgid "Profile Photos"
msgstr "Profilfotos"
@@ -4998,80 +5046,80 @@ msgstr "Profilfotos"
msgid "Image resize failed."
msgstr "Bild-Anpassung fehlgeschlagen."
-#: ../../Zotlabs/Module/Profile_photo.php:196
+#: ../../Zotlabs/Module/Profile_photo.php:204
#: ../../addon/openclipatar/openclipatar.php:298
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."
-#: ../../Zotlabs/Module/Profile_photo.php:203
-#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:145
+#: ../../Zotlabs/Module/Profile_photo.php:211
+#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:156
msgid "Unable to process image"
msgstr "Kann Bild nicht verarbeiten"
-#: ../../Zotlabs/Module/Profile_photo.php:238
+#: ../../Zotlabs/Module/Profile_photo.php:246
#: ../../Zotlabs/Module/Cover_photo.php:197
msgid "Image upload failed."
msgstr "Hochladen des Bilds fehlgeschlagen."
-#: ../../Zotlabs/Module/Profile_photo.php:257
+#: ../../Zotlabs/Module/Profile_photo.php:265
#: ../../Zotlabs/Module/Cover_photo.php:214
msgid "Unable to process image."
msgstr "Kann Bild nicht verarbeiten."
-#: ../../Zotlabs/Module/Profile_photo.php:318
-#: ../../Zotlabs/Module/Profile_photo.php:365
+#: ../../Zotlabs/Module/Profile_photo.php:326
+#: ../../Zotlabs/Module/Profile_photo.php:373
#: ../../Zotlabs/Module/Cover_photo.php:307
#: ../../Zotlabs/Module/Cover_photo.php:322
msgid "Photo not available."
msgstr "Foto nicht verfügbar."
-#: ../../Zotlabs/Module/Profile_photo.php:420
+#: ../../Zotlabs/Module/Profile_photo.php:428
#: ../../Zotlabs/Module/Cover_photo.php:358
msgid "Upload File:"
msgstr "Datei hochladen:"
-#: ../../Zotlabs/Module/Profile_photo.php:421
+#: ../../Zotlabs/Module/Profile_photo.php:429
#: ../../Zotlabs/Module/Cover_photo.php:359
msgid "Select a profile:"
msgstr "Wähle ein Profil:"
-#: ../../Zotlabs/Module/Profile_photo.php:422
+#: ../../Zotlabs/Module/Profile_photo.php:430
msgid "Use Photo for Profile"
msgstr "Foto für Profil verwenden"
-#: ../../Zotlabs/Module/Profile_photo.php:422
+#: ../../Zotlabs/Module/Profile_photo.php:430
msgid "Upload Profile Photo"
msgstr "Lade neues Profilfoto hoch"
-#: ../../Zotlabs/Module/Profile_photo.php:423
+#: ../../Zotlabs/Module/Profile_photo.php:431
#: ../../addon/openclipatar/openclipatar.php:182
#: ../../addon/openclipatar/openclipatar.php:194
msgid "Use"
msgstr "Verwenden"
-#: ../../Zotlabs/Module/Profile_photo.php:429
+#: ../../Zotlabs/Module/Profile_photo.php:437
#: ../../Zotlabs/Module/Cover_photo.php:365
msgid "skip this step"
msgstr "diesen Schritt überspringen"
-#: ../../Zotlabs/Module/Profile_photo.php:429
+#: ../../Zotlabs/Module/Profile_photo.php:437
#: ../../Zotlabs/Module/Cover_photo.php:365
msgid "select a photo from your photo albums"
msgstr "ein Foto aus meinen Fotoalben"
-#: ../../Zotlabs/Module/Profile_photo.php:448
+#: ../../Zotlabs/Module/Profile_photo.php:456
#: ../../Zotlabs/Module/Cover_photo.php:381
msgid "Crop Image"
msgstr "Bild zuschneiden"
-#: ../../Zotlabs/Module/Profile_photo.php:449
+#: ../../Zotlabs/Module/Profile_photo.php:457
#: ../../Zotlabs/Module/Cover_photo.php:382
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu."
-#: ../../Zotlabs/Module/Profile_photo.php:451
+#: ../../Zotlabs/Module/Profile_photo.php:459
#: ../../Zotlabs/Module/Cover_photo.php:384
msgid "Done Editing"
msgstr "Bearbeitung fertigstellen"
@@ -5092,60 +5140,68 @@ msgstr "Originalbeitrag nicht gefunden."
msgid "Empty post discarded."
msgstr "Leeren Beitrag verworfen."
-#: ../../Zotlabs/Module/Item.php:844
+#: ../../Zotlabs/Module/Item.php:870
msgid "Duplicate post suppressed."
msgstr "Doppelter Beitrag unterdrückt."
-#: ../../Zotlabs/Module/Item.php:989
+#: ../../Zotlabs/Module/Item.php:1015
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag nicht gespeichert."
-#: ../../Zotlabs/Module/Item.php:1025
+#: ../../Zotlabs/Module/Item.php:1051
msgid "Your comment is awaiting approval."
msgstr "Dein Kommentar muss noch bestätigt werden."
-#: ../../Zotlabs/Module/Item.php:1123
+#: ../../Zotlabs/Module/Item.php:1156
msgid "Unable to obtain post information from database."
msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."
-#: ../../Zotlabs/Module/Item.php:1130
+#: ../../Zotlabs/Module/Item.php:1163
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."
-#: ../../Zotlabs/Module/Item.php:1137
+#: ../../Zotlabs/Module/Item.php:1170
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
-#: ../../Zotlabs/Module/Ping.php:280
+#: ../../Zotlabs/Module/Ping.php:318
msgid "sent you a private message"
msgstr "hat Dir eine private Nachricht geschickt"
-#: ../../Zotlabs/Module/Ping.php:331
+#: ../../Zotlabs/Module/Ping.php:369
msgid "added your channel"
msgstr "hat deinen Kanal hinzugefügt"
-#: ../../Zotlabs/Module/Ping.php:341
+#: ../../Zotlabs/Module/Ping.php:393
+msgid "requires approval"
+msgstr "Zustimmung erforderlich"
+
+#: ../../Zotlabs/Module/Ping.php:403
msgid "g A l F d"
msgstr "l, d. F, G:i \\U\\h\\r"
-#: ../../Zotlabs/Module/Ping.php:359
+#: ../../Zotlabs/Module/Ping.php:421
msgid "[today]"
msgstr "[Heute]"
-#: ../../Zotlabs/Module/Ping.php:368
+#: ../../Zotlabs/Module/Ping.php:430
msgid "posted an event"
msgstr "hat einen Termin veröffentlicht"
+#: ../../Zotlabs/Module/Ping.php:463
+msgid "shared a file with you"
+msgstr "hat eine Datei mit Dir geteilt"
+
#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29
msgid "Invalid item."
msgstr "Ungültiges Element."
#: ../../Zotlabs/Module/Page.php:128 ../../Zotlabs/Module/Block.php:77
-#: ../../Zotlabs/Module/Display.php:122
-#: ../../Zotlabs/Lib/NativeWikiPage.php:500 ../../Zotlabs/Web/Router.php:146
-#: ../../include/help.php:68
+#: ../../Zotlabs/Module/Display.php:120
+#: ../../Zotlabs/Lib/NativeWikiPage.php:515 ../../Zotlabs/Web/Router.php:158
+#: ../../include/help.php:81
msgid "Page not found."
msgstr "Seite nicht gefunden."
@@ -5175,293 +5231,293 @@ msgstr "Verbindung aktualisiert."
msgid "Failed to update connection record."
msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
-#: ../../Zotlabs/Module/Connedit.php:298
+#: ../../Zotlabs/Module/Connedit.php:302
msgid "is now connected to"
msgstr "ist jetzt verbunden mit"
-#: ../../Zotlabs/Module/Connedit.php:423
+#: ../../Zotlabs/Module/Connedit.php:427
msgid "Could not access address book record."
msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen."
-#: ../../Zotlabs/Module/Connedit.php:471
+#: ../../Zotlabs/Module/Connedit.php:475
msgid "Refresh failed - channel is currently unavailable."
msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
-#: ../../Zotlabs/Module/Connedit.php:486 ../../Zotlabs/Module/Connedit.php:495
-#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513
-#: ../../Zotlabs/Module/Connedit.php:526
+#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499
+#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517
+#: ../../Zotlabs/Module/Connedit.php:530
msgid "Unable to set address book parameters."
msgstr "Konnte die Adressbuch-Parameter nicht setzen."
-#: ../../Zotlabs/Module/Connedit.php:550
+#: ../../Zotlabs/Module/Connedit.php:554
msgid "Connection has been removed."
msgstr "Verbindung wurde gelöscht."
-#: ../../Zotlabs/Module/Connedit.php:590 ../../Zotlabs/Lib/Apps.php:241
+#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:241
#: ../../addon/openclipatar/openclipatar.php:57
-#: ../../include/conversation.php:979 ../../include/nav.php:102
+#: ../../include/conversation.php:1015 ../../include/nav.php:141
msgid "View Profile"
msgstr "Profil ansehen"
-#: ../../Zotlabs/Module/Connedit.php:593
+#: ../../Zotlabs/Module/Connedit.php:597
#, php-format
msgid "View %s's profile"
msgstr "%ss Profil ansehen"
-#: ../../Zotlabs/Module/Connedit.php:597
+#: ../../Zotlabs/Module/Connedit.php:601
msgid "Refresh Permissions"
msgstr "Zugriffsrechte neu laden"
-#: ../../Zotlabs/Module/Connedit.php:600
+#: ../../Zotlabs/Module/Connedit.php:604
msgid "Fetch updated permissions"
msgstr "Aktualisierte Zugriffsrechte abrufen"
-#: ../../Zotlabs/Module/Connedit.php:604
+#: ../../Zotlabs/Module/Connedit.php:608
msgid "Refresh Photo"
msgstr "Foto aktualisieren"
-#: ../../Zotlabs/Module/Connedit.php:607
+#: ../../Zotlabs/Module/Connedit.php:611
msgid "Fetch updated photo"
msgstr "Aktualisiertes Profilfoto abrufen"
-#: ../../Zotlabs/Module/Connedit.php:611
+#: ../../Zotlabs/Module/Connedit.php:615
msgid "Recent Activity"
msgstr "Kürzliche Aktivitäten"
-#: ../../Zotlabs/Module/Connedit.php:614
+#: ../../Zotlabs/Module/Connedit.php:618
msgid "View recent posts and comments"
msgstr "Betrachte die neuesten Beiträge und Kommentare"
-#: ../../Zotlabs/Module/Connedit.php:621
+#: ../../Zotlabs/Module/Connedit.php:625
msgid "Block (or Unblock) all communications with this connection"
msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"
-#: ../../Zotlabs/Module/Connedit.php:622
+#: ../../Zotlabs/Module/Connedit.php:626
msgid "This connection is blocked!"
msgstr "Die Verbindung ist geblockt!"
-#: ../../Zotlabs/Module/Connedit.php:626
+#: ../../Zotlabs/Module/Connedit.php:630
msgid "Unignore"
msgstr "Nicht ignorieren"
-#: ../../Zotlabs/Module/Connedit.php:629
+#: ../../Zotlabs/Module/Connedit.php:633
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"
-#: ../../Zotlabs/Module/Connedit.php:630
+#: ../../Zotlabs/Module/Connedit.php:634
msgid "This connection is ignored!"
msgstr "Die Verbindung wird ignoriert!"
-#: ../../Zotlabs/Module/Connedit.php:634
+#: ../../Zotlabs/Module/Connedit.php:638
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
-#: ../../Zotlabs/Module/Connedit.php:634
+#: ../../Zotlabs/Module/Connedit.php:638
msgid "Archive"
msgstr "Archivieren"
-#: ../../Zotlabs/Module/Connedit.php:637
+#: ../../Zotlabs/Module/Connedit.php:641
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"
-#: ../../Zotlabs/Module/Connedit.php:638
+#: ../../Zotlabs/Module/Connedit.php:642
msgid "This connection is archived!"
msgstr "Die Verbindung ist archiviert!"
-#: ../../Zotlabs/Module/Connedit.php:642
+#: ../../Zotlabs/Module/Connedit.php:646
msgid "Unhide"
msgstr "Wieder sichtbar machen"
-#: ../../Zotlabs/Module/Connedit.php:642
+#: ../../Zotlabs/Module/Connedit.php:646
msgid "Hide"
msgstr "Verstecken"
-#: ../../Zotlabs/Module/Connedit.php:645
+#: ../../Zotlabs/Module/Connedit.php:649
msgid "Hide or Unhide this connection from your other connections"
msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"
-#: ../../Zotlabs/Module/Connedit.php:646
+#: ../../Zotlabs/Module/Connedit.php:650
msgid "This connection is hidden!"
msgstr "Die Verbindung ist versteckt!"
-#: ../../Zotlabs/Module/Connedit.php:653
+#: ../../Zotlabs/Module/Connedit.php:657
msgid "Delete this connection"
msgstr "Verbindung löschen"
-#: ../../Zotlabs/Module/Connedit.php:661
+#: ../../Zotlabs/Module/Connedit.php:665
msgid "Fetch Vcard"
msgstr "Vcard abrufen"
-#: ../../Zotlabs/Module/Connedit.php:664
+#: ../../Zotlabs/Module/Connedit.php:668
msgid "Fetch electronic calling card for this connection"
msgstr "Rufe eine digitale Visitenkarte für diese Verbindung ab"
-#: ../../Zotlabs/Module/Connedit.php:675
+#: ../../Zotlabs/Module/Connedit.php:679
msgid "Open Individual Permissions section by default"
msgstr "Öffne standardmäßig den Bereich für individuelle Berechtigungen"
-#: ../../Zotlabs/Module/Connedit.php:698
+#: ../../Zotlabs/Module/Connedit.php:702
msgid "Affinity"
msgstr "Beziehung"
-#: ../../Zotlabs/Module/Connedit.php:701
+#: ../../Zotlabs/Module/Connedit.php:705
msgid "Open Set Affinity section by default"
msgstr "Öffne standardmäßig den Bereich für Beziehungsgrad-Einstellungen"
-#: ../../Zotlabs/Module/Connedit.php:705 ../../Zotlabs/Widget/Affinity.php:26
+#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:26
msgid "Me"
msgstr "Ich"
-#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Widget/Affinity.php:27
+#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:27
msgid "Family"
msgstr "Familie"
-#: ../../Zotlabs/Module/Connedit.php:708 ../../Zotlabs/Widget/Affinity.php:29
+#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:29
msgid "Acquaintances"
msgstr "Bekannte"
-#: ../../Zotlabs/Module/Connedit.php:735
+#: ../../Zotlabs/Module/Connedit.php:739
msgid "Filter"
msgstr "Filter"
-#: ../../Zotlabs/Module/Connedit.php:738
+#: ../../Zotlabs/Module/Connedit.php:742
msgid "Open Custom Filter section by default"
msgstr "Öffne standardmäßig den Bereich für benutzerdefinierte Filter"
-#: ../../Zotlabs/Module/Connedit.php:775
+#: ../../Zotlabs/Module/Connedit.php:779
msgid "Approve this connection"
msgstr "Verbindung genehmigen"
-#: ../../Zotlabs/Module/Connedit.php:775
+#: ../../Zotlabs/Module/Connedit.php:779
msgid "Accept connection to allow communication"
msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"
-#: ../../Zotlabs/Module/Connedit.php:780
+#: ../../Zotlabs/Module/Connedit.php:784
msgid "Set Affinity"
msgstr "Beziehung festlegen"
-#: ../../Zotlabs/Module/Connedit.php:783
+#: ../../Zotlabs/Module/Connedit.php:787
msgid "Set Profile"
msgstr "Profil festlegen"
-#: ../../Zotlabs/Module/Connedit.php:786
+#: ../../Zotlabs/Module/Connedit.php:790
msgid "Set Affinity & Profile"
msgstr "Beziehung und Profile festlegen"
-#: ../../Zotlabs/Module/Connedit.php:851
+#: ../../Zotlabs/Module/Connedit.php:855
msgid "This connection is unreachable from this location."
msgstr "Diese Verbindung ist von diesem Ort unerreichbar."
-#: ../../Zotlabs/Module/Connedit.php:852
+#: ../../Zotlabs/Module/Connedit.php:856
msgid "This connection may be unreachable from other channel locations."
msgstr "Diese Verbindung könnte von anderen Standpunkten des Kanals nicht erreichbar sein."
-#: ../../Zotlabs/Module/Connedit.php:854
+#: ../../Zotlabs/Module/Connedit.php:858
msgid "Location independence is not supported by their network."
msgstr "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt."
-#: ../../Zotlabs/Module/Connedit.php:860
+#: ../../Zotlabs/Module/Connedit.php:864
msgid ""
"This connection is unreachable from this location. Location independence is "
"not supported by their network."
msgstr "Diese Verbindung ist von diesem Standort aus unerreichbar. Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt."
-#: ../../Zotlabs/Module/Connedit.php:863
+#: ../../Zotlabs/Module/Connedit.php:867
#: ../../Zotlabs/Widget/Settings_menu.php:109
msgid "Connection Default Permissions"
msgstr "Standardzugriffsrechte für neue Verbindungen:"
-#: ../../Zotlabs/Module/Connedit.php:863 ../../include/items.php:3925
+#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:3974
#, php-format
msgid "Connection: %s"
msgstr "Verbindung: %s"
-#: ../../Zotlabs/Module/Connedit.php:864
+#: ../../Zotlabs/Module/Connedit.php:868
msgid "Apply these permissions automatically"
msgstr "Diese Berechtigungen automatisch anwenden"
-#: ../../Zotlabs/Module/Connedit.php:864
+#: ../../Zotlabs/Module/Connedit.php:868
msgid "Connection requests will be approved without your interaction"
msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."
-#: ../../Zotlabs/Module/Connedit.php:865
+#: ../../Zotlabs/Module/Connedit.php:869
msgid "Permission role"
msgstr "Berechtigungsrolle"
-#: ../../Zotlabs/Module/Connedit.php:866
+#: ../../Zotlabs/Module/Connedit.php:870
msgid "Add permission role"
msgstr "Berechtigungsrolle hinzufügen"
-#: ../../Zotlabs/Module/Connedit.php:873
+#: ../../Zotlabs/Module/Connedit.php:877
msgid "This connection's primary address is"
msgstr "Die Hauptadresse der Verbindung ist"
-#: ../../Zotlabs/Module/Connedit.php:874
+#: ../../Zotlabs/Module/Connedit.php:878
msgid "Available locations:"
msgstr "Verfügbare Klone:"
-#: ../../Zotlabs/Module/Connedit.php:879
+#: ../../Zotlabs/Module/Connedit.php:883
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."
-#: ../../Zotlabs/Module/Connedit.php:880
+#: ../../Zotlabs/Module/Connedit.php:884
msgid "Connection Tools"
msgstr "Verbindungswerkzeuge"
-#: ../../Zotlabs/Module/Connedit.php:882
+#: ../../Zotlabs/Module/Connedit.php:886
msgid "Slide to adjust your degree of friendship"
msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen"
-#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Rate.php:155
+#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155
#: ../../include/js_strings.php:20
msgid "Rating"
msgstr "Bewertung"
-#: ../../Zotlabs/Module/Connedit.php:884
+#: ../../Zotlabs/Module/Connedit.php:888
msgid "Slide to adjust your rating"
msgstr "Verschieben, um Deine Bewertung einzustellen"
-#: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:890
+#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894
msgid "Optionally explain your rating"
msgstr "Optional kannst Du Deine Bewertung begründen"
-#: ../../Zotlabs/Module/Connedit.php:887
+#: ../../Zotlabs/Module/Connedit.php:891
msgid "Custom Filter"
msgstr "Benutzerdefinierter Filter"
-#: ../../Zotlabs/Module/Connedit.php:888
+#: ../../Zotlabs/Module/Connedit.php:892
msgid "Only import posts with this text"
msgstr "Nur Beiträge mit diesem Text importieren"
-#: ../../Zotlabs/Module/Connedit.php:888 ../../Zotlabs/Module/Connedit.php:889
+#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren."
-#: ../../Zotlabs/Module/Connedit.php:889
+#: ../../Zotlabs/Module/Connedit.php:893
msgid "Do not import posts with this text"
msgstr "Beiträge mit diesem Text nicht importieren"
-#: ../../Zotlabs/Module/Connedit.php:891
+#: ../../Zotlabs/Module/Connedit.php:895
msgid "This information is public!"
msgstr "Diese Information ist öffentlich!"
-#: ../../Zotlabs/Module/Connedit.php:896
+#: ../../Zotlabs/Module/Connedit.php:900
msgid "Connection Pending Approval"
msgstr "Verbindung wartet auf Bestätigung"
-#: ../../Zotlabs/Module/Connedit.php:901
+#: ../../Zotlabs/Module/Connedit.php:905
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
-#: ../../Zotlabs/Module/Connedit.php:908
+#: ../../Zotlabs/Module/Connedit.php:912
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, 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 <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> 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,6 +9781,66 @@ 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/gravatar/gravatar.php:123
+msgid "generic profile image"
+msgstr ""
+
+#: ../../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.<br>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"
@@ -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 "<span %1$s>%2$d people</span> like this."
msgid_plural "<span %1$s>%2$d people</span> like this."
msgstr[0] "<span %1$s>%2$d Person</span> gefällt das."
msgstr[1] "<span %1$s>%2$d Leuten</span> gefällt das."
-#: ../../include/conversation.php:1159
+#: ../../include/conversation.php:1195
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgid_plural "<span %1$s>%2$d people</span> don't like this."
msgstr[0] "<span %1$s>%2$d Person</span> gefällt das nicht."
msgstr[1] "<span %1$s>%2$d Leuten</span> 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: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:98
+msgid "Network Activity"
+msgstr "Netzwerk-Aktivitäten"
-#: ../../include/nav.php:140
-msgid "Log me out of this site"
-msgstr "Logge mich von dieser Seite aus"
-
-#: ../../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:100
+msgid "Mark all activity notifications seen"
+msgstr "Alle Benachrichtigungen als gesehen markieren"
-#: ../../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:203
-msgid "New files shared with me"
-msgstr "Neue Dateien, die mit mir geteilt wurden"
+#: ../../include/nav.php:141
+msgid "Your profile page"
+msgstr "Deine Profilseite"
-#: ../../include/nav.php:208
-msgid "Public stream"
-msgstr "Öffentlicher Beitrags-Stream"
+#: ../../include/nav.php:144
+msgid "Manage/Edit profiles"
+msgstr "Profile verwalten"
-#: ../../include/nav.php:208
-msgid "Public stream activities"
-msgstr "Öffentliche Netzwerk-Aktivitäten"
+#: ../../include/nav.php:146
+msgid "Edit your profile"
+msgstr "Profil bearbeiten"
-#: ../../include/nav.php:215
+#: ../../include/nav.php:153 ../../include/nav.php:157
+msgid "Sign in"
+msgstr "Anmelden"
+
+#: ../../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: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: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&nbsp;type"] = "Alle&nbsp;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 <a href=\"settings\"><strong>privacy settings</strong></a>, 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 <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> 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 <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Um fortzufahren <a href=\"rmagic\">melde Dich bitte mit Deiner \$Projectname-ID an</a> oder <a href=\"register\">registriere Dich als neues \$Projectname-Mitglied</a>.";
@@ -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["&lt;blush&gt;"] = "";
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.<br>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 <strong>may</strong> 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 <strong>könnten</strong> 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";
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 <mjfriaza@openmailbox.org>\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 <a href=\"%
#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:490
#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63
-#: ../../Zotlabs/Module/Display.php:22
+#: ../../Zotlabs/Module/Display.php:21
#: ../../Zotlabs/Module/Viewconnections.php:23
msgid "Public access denied."
msgstr "Acceso público denegado."
-#: ../../Zotlabs/Module/Search.php:25 ../../Zotlabs/Module/Search.php:44
-#: ../../Zotlabs/Module/Connections.php:313 ../../Zotlabs/Lib/Apps.php:250
-#: ../../Zotlabs/Widget/Sitesearch.php:31 ../../include/text.php:1021
-#: ../../include/text.php:1033 ../../include/acl_selectors.php:213
-#: ../../include/nav.php:160
+#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:313
+#: ../../Zotlabs/Lib/Apps.php:250 ../../Zotlabs/Widget/Sitesearch.php:31
+#: ../../include/text.php:1029 ../../include/text.php:1041
+#: ../../include/acl_selectors.php:213 ../../include/nav.php:204
msgid "Search"
msgstr "Buscar"
@@ -924,6 +910,11 @@ msgstr "elementos etiquetados con: %s"
msgid "Search results for: %s"
msgstr "Resultados de la búsqueda para: %s"
+#: ../../Zotlabs/Module/Pubstream.php:38
+#: ../../Zotlabs/Widget/Notifications.php:128
+msgid "Public Stream"
+msgstr "\"Stream\" público"
+
#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54
msgid "Location not found."
msgstr "Dirección no encontrada."
@@ -976,11 +967,11 @@ msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio
msgid "Use this form to drop the location if the hub is no longer operating."
msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."
-#: ../../Zotlabs/Module/Apporder.php:34
+#: ../../Zotlabs/Module/Apporder.php:39
msgid "Change Order of Navigation Apps"
msgstr "Cambiar el orden de las aplicaciones en la barra de navegación"
-#: ../../Zotlabs/Module/Apporder.php:35
+#: ../../Zotlabs/Module/Apporder.php:40
msgid ""
"Use arrows to move the corresponding app up or down in the display list"
msgstr "Utilizar las flechas para mover la aplicación correspondiente hacia arriba o hacia abajo en la lista de visualización"
@@ -1035,18 +1026,20 @@ msgstr "Usar la autenticación mágica si está disponible"
#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241
#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471
#: ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Admin/Site.php:235
+#: ../../Zotlabs/Module/Admin/Site.php:237
#: ../../Zotlabs/Module/Settings/Channel.php:298
#: ../../Zotlabs/Module/Settings/Display.php:103
#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:644
-#: ../../Zotlabs/Module/Wiki.php:182 ../../Zotlabs/Module/Connedit.php:392
-#: ../../Zotlabs/Module/Connedit.php:775 ../../Zotlabs/Module/Menu.php:100
-#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Profiles.php:681
+#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219
+#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779
+#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
+#: ../../Zotlabs/Module/Profiles.php:681
#: ../../Zotlabs/Module/Filestorage.php:150
#: ../../Zotlabs/Module/Filestorage.php:158
-#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1605
-#: ../../view/theme/redbasic/php/config.php:100
-#: ../../view/theme/redbasic/php/config.php:115
+#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1644
+#: ../../view/theme/redbasic_c/php/config.php:100
+#: ../../view/theme/redbasic_c/php/config.php:115
+#: ../../view/theme/redbasic/php/config.php:98
#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82
#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109
#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73
@@ -1084,18 +1077,19 @@ msgstr "No"
#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241
#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471
#: ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Admin/Site.php:237
+#: ../../Zotlabs/Module/Admin/Site.php:239
#: ../../Zotlabs/Module/Settings/Channel.php:298
#: ../../Zotlabs/Module/Settings/Display.php:103
#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:644
-#: ../../Zotlabs/Module/Wiki.php:182 ../../Zotlabs/Module/Connedit.php:392
-#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
-#: ../../Zotlabs/Module/Profiles.php:681
+#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219
+#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100
+#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Profiles.php:681
#: ../../Zotlabs/Module/Filestorage.php:150
#: ../../Zotlabs/Module/Filestorage.php:158
-#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1605
-#: ../../view/theme/redbasic/php/config.php:100
-#: ../../view/theme/redbasic/php/config.php:115
+#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1644
+#: ../../view/theme/redbasic_c/php/config.php:100
+#: ../../view/theme/redbasic_c/php/config.php:115
+#: ../../view/theme/redbasic/php/config.php:98
#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82
#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109
#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73
@@ -1236,17 +1230,10 @@ msgstr "Evento no encontrado."
#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:51
#: ../../Zotlabs/Module/Like.php:372 ../../include/conversation.php:119
-#: ../../include/text.php:1933 ../../include/event.php:1145
+#: ../../include/text.php:1941 ../../include/event.php:1145
msgid "event"
msgstr "evento"
-#: ../../Zotlabs/Module/Events.php:275 ../../Zotlabs/Lib/Apps.php:243
-#: ../../include/conversation.php:1799 ../../include/conversation.php:1802
-#: ../../include/nav.php:195 ../../include/nav.php:397
-#: ../../include/nav.php:400
-msgid "Events"
-msgstr "Eventos"
-
#: ../../Zotlabs/Module/Events.php:460
msgid "Edit event title"
msgstr "Editar el título del evento"
@@ -1304,13 +1291,13 @@ msgstr "Editar la descripción"
msgid "Edit Location"
msgstr "Modificar la dirección"
-#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1065
-#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:739
-#: ../../include/conversation.php:1277
+#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1070
+#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:753
+#: ../../include/conversation.php:1313
msgid "Preview"
msgstr "Previsualizar"
-#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1340
+#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1385
msgid "Permission settings"
msgstr "Configuración de permisos"
@@ -1335,7 +1322,7 @@ msgid "Delete event"
msgstr "Borrar evento"
#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:313
-#: ../../include/text.php:1752
+#: ../../include/text.php:1760
msgid "Link to Source"
msgstr "Enlazar con la entrada en su ubicación original"
@@ -1352,7 +1339,7 @@ msgid "Create Event"
msgstr "Crear un evento"
#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:339
-#: ../../include/channel.php:1488
+#: ../../include/channel.php:1588
msgid "Export"
msgstr "Exportar"
@@ -1420,21 +1407,21 @@ msgstr "Dirección (URL) donde adquirir la aplicación"
msgid "Please login."
msgstr "Por favor, inicie sesión."
-#: ../../Zotlabs/Module/Magic.php:71
+#: ../../Zotlabs/Module/Magic.php:72
msgid "Hub not found."
msgstr "Servidor no encontrado"
#: ../../Zotlabs/Module/Subthread.php:87 ../../Zotlabs/Module/Tagger.php:47
#: ../../Zotlabs/Module/Like.php:370
#: ../../addon/redphotos/redphotohelper.php:71
-#: ../../addon/diaspora/Receiver.php:1370 ../../include/conversation.php:116
-#: ../../include/text.php:1930
+#: ../../addon/diaspora/Receiver.php:1424 ../../addon/pubcrawl/as.php:1288
+#: ../../include/conversation.php:116 ../../include/text.php:1938
msgid "photo"
msgstr "foto"
#: ../../Zotlabs/Module/Subthread.php:87 ../../Zotlabs/Module/Like.php:370
-#: ../../addon/diaspora/Receiver.php:1370 ../../include/conversation.php:144
-#: ../../include/text.php:1936
+#: ../../addon/diaspora/Receiver.php:1424 ../../addon/pubcrawl/as.php:1288
+#: ../../include/conversation.php:144 ../../include/text.php:1944
msgid "status"
msgstr "el mensaje de estado"
@@ -1482,7 +1469,7 @@ msgid ""
msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."
#: ../../Zotlabs/Module/Import_items.php:127
-#: ../../Zotlabs/Module/Import.php:505
+#: ../../Zotlabs/Module/Import.php:516
msgid "File to Upload"
msgstr "Fichero para subir"
@@ -1558,6 +1545,7 @@ msgstr "Eliminar este canal"
#: ../../Zotlabs/Module/Removeme.php:61
#: ../../Zotlabs/Module/Removeaccount.php:58
+#: ../../Zotlabs/Module/Changeaddr.php:78
msgid "WARNING: "
msgstr "ATENCIÓN:"
@@ -1572,6 +1560,7 @@ msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!"
#: ../../Zotlabs/Module/Removeme.php:62
#: ../../Zotlabs/Module/Removeaccount.php:59
+#: ../../Zotlabs/Module/Changeaddr.php:79
msgid "Please enter your password for verification:"
msgstr "Por favor, introduzca su contraseña para su verificación:"
@@ -1599,7 +1588,7 @@ msgid "NEW"
msgstr "NUEVO"
#: ../../Zotlabs/Module/Sharedwithme.php:107
-#: ../../Zotlabs/Storage/Browser.php:236 ../../include/text.php:1386
+#: ../../Zotlabs/Storage/Browser.php:236 ../../include/text.php:1394
msgid "Size"
msgstr "Tamaño"
@@ -2192,9 +2181,10 @@ msgstr "Intentar ejecutar este paso de actualización automáticamente"
#: ../../Zotlabs/Module/Admin/Plugins.php:259
#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89
-#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:35
+#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:33
+#: ../../Zotlabs/Module/Display.php:347
#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62
-#: ../../include/items.php:3361
+#: ../../include/items.php:3410
msgid "Item not found."
msgstr "Elemento no encontrado."
@@ -2225,7 +2215,7 @@ msgstr "Activar"
#: ../../Zotlabs/Module/Admin/Channels.php:145
#: ../../Zotlabs/Module/Admin/Themes.php:122
#: ../../Zotlabs/Module/Admin/Themes.php:156
-#: ../../Zotlabs/Module/Admin/Site.php:269
+#: ../../Zotlabs/Module/Admin/Site.php:271
#: ../../Zotlabs/Module/Admin/Security.php:86
#: ../../Zotlabs/Module/Admin.php:136
msgid "Administration"
@@ -2244,7 +2234,8 @@ msgstr "Cambiar"
#: ../../Zotlabs/Module/Admin/Plugins.php:344
#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:236
-#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:201
+#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:132
+#: ../../include/nav.php:217
msgid "Settings"
msgstr "Ajustes"
@@ -2307,7 +2298,7 @@ msgstr "Descargar el repositorio"
msgid "Install new repo"
msgstr "Instalar un nuevo repositorio"
-#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:384
+#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:383
msgid "Install"
msgstr "Instalar"
@@ -2328,7 +2319,7 @@ msgid "Switch branch"
msgstr "Cambiar la rama"
#: ../../Zotlabs/Module/Admin/Plugins.php:455
-#: ../../Zotlabs/Module/Photos.php:962 ../../Zotlabs/Module/Tagrm.php:137
+#: ../../Zotlabs/Module/Photos.php:967 ../../Zotlabs/Module/Tagrm.php:137
#: ../../addon/superblock/superblock.php:116
msgid "Remove"
msgstr "Eliminar"
@@ -2351,7 +2342,7 @@ msgstr[1] "%s cuentas eliminadas"
msgid "Account not found"
msgstr "Cuenta no encontrada"
-#: ../../Zotlabs/Module/Admin/Accounts.php:90
+#: ../../Zotlabs/Module/Admin/Accounts.php:90 ../../include/channel.php:2357
#, php-format
msgid "Account '%s' deleted"
msgstr "La cuenta '%s' ha sido eliminada"
@@ -2390,7 +2381,7 @@ msgid "No registrations."
msgstr "Sin registros."
#: ../../Zotlabs/Module/Admin/Accounts.php:171
-#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:685
+#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:716
msgid "Approve"
msgstr "Aprobar"
@@ -2399,12 +2390,12 @@ msgid "Deny"
msgstr "Rechazar"
#: ../../Zotlabs/Module/Admin/Accounts.php:174
-#: ../../Zotlabs/Module/Connedit.php:618
+#: ../../Zotlabs/Module/Connedit.php:622
msgid "Block"
msgstr "Bloquear"
#: ../../Zotlabs/Module/Admin/Accounts.php:175
-#: ../../Zotlabs/Module/Connedit.php:618
+#: ../../Zotlabs/Module/Connedit.php:622
msgid "Unblock"
msgstr "Desbloquear"
@@ -2547,7 +2538,7 @@ msgid "Disallow Code"
msgstr "No permitir código"
#: ../../Zotlabs/Module/Admin/Channels.php:154
-#: ../../include/conversation.php:1757 ../../include/nav.php:355
+#: ../../include/conversation.php:1791 ../../include/nav.php:399
msgid "Channel"
msgstr "Canal"
@@ -2592,382 +2583,394 @@ msgstr "[Experimental]"
msgid "[Unsupported]"
msgstr "[No soportado]"
-#: ../../Zotlabs/Module/Admin/Site.php:142
+#: ../../Zotlabs/Module/Admin/Site.php:144
msgid "Site settings updated."
msgstr "Ajustes del sitio actualizados."
-#: ../../Zotlabs/Module/Admin/Site.php:168
-#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2928
+#: ../../Zotlabs/Module/Admin/Site.php:170
+#: ../../view/theme/redbasic_c/php/config.php:15
+#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2943
msgid "Default"
msgstr "Predeterminado"
-#: ../../Zotlabs/Module/Admin/Site.php:179
+#: ../../Zotlabs/Module/Admin/Site.php:181
#: ../../Zotlabs/Module/Settings/Display.php:137
#, php-format
msgid "%s - (Incompatible)"
msgstr "%s - (Incompatible)"
-#: ../../Zotlabs/Module/Admin/Site.php:186
+#: ../../Zotlabs/Module/Admin/Site.php:188
#: ../../Zotlabs/Module/Settings/Display.php:151
msgid "mobile"
msgstr "móvil"
-#: ../../Zotlabs/Module/Admin/Site.php:188
+#: ../../Zotlabs/Module/Admin/Site.php:190
msgid "experimental"
msgstr "experimental"
-#: ../../Zotlabs/Module/Admin/Site.php:190
+#: ../../Zotlabs/Module/Admin/Site.php:192
msgid "unsupported"
msgstr "no soportado"
-#: ../../Zotlabs/Module/Admin/Site.php:236
+#: ../../Zotlabs/Module/Admin/Site.php:238
msgid "Yes - with approval"
msgstr "Sí - con aprobación"
-#: ../../Zotlabs/Module/Admin/Site.php:242
+#: ../../Zotlabs/Module/Admin/Site.php:244
msgid "My site is not a public server"
msgstr "Mi sitio no es un servidor público"
-#: ../../Zotlabs/Module/Admin/Site.php:243
+#: ../../Zotlabs/Module/Admin/Site.php:245
msgid "My site has paid access only"
msgstr "Mi sitio es un servicio de pago"
-#: ../../Zotlabs/Module/Admin/Site.php:244
+#: ../../Zotlabs/Module/Admin/Site.php:246
msgid "My site has free access only"
msgstr "Mi sitio es un servicio gratuito"
-#: ../../Zotlabs/Module/Admin/Site.php:245
+#: ../../Zotlabs/Module/Admin/Site.php:247
msgid "My site offers free accounts with optional paid upgrades"
msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"
-#: ../../Zotlabs/Module/Admin/Site.php:256
+#: ../../Zotlabs/Module/Admin/Site.php:258
msgid "Beginner/Basic"
msgstr "Principiante / Básico"
-#: ../../Zotlabs/Module/Admin/Site.php:257
+#: ../../Zotlabs/Module/Admin/Site.php:259
msgid "Novice - not skilled but willing to learn"
msgstr "Novato: no cualificado, pero dispuesto a aprender"
-#: ../../Zotlabs/Module/Admin/Site.php:258
+#: ../../Zotlabs/Module/Admin/Site.php:260
msgid "Intermediate - somewhat comfortable"
msgstr "Intermedio: bastante cómodo"
-#: ../../Zotlabs/Module/Admin/Site.php:259
+#: ../../Zotlabs/Module/Admin/Site.php:261
msgid "Advanced - very comfortable"
msgstr "Avanzado: muy cómodo"
-#: ../../Zotlabs/Module/Admin/Site.php:260
+#: ../../Zotlabs/Module/Admin/Site.php:262
msgid "Expert - I can write computer code"
msgstr "Experto: puedo escribir código informático"
-#: ../../Zotlabs/Module/Admin/Site.php:261
+#: ../../Zotlabs/Module/Admin/Site.php:263
msgid "Wizard - I probably know more than you do"
msgstr "Colaborador: probablemente sé más que tú"
-#: ../../Zotlabs/Module/Admin/Site.php:270 ../../Zotlabs/Widget/Admin.php:22
+#: ../../Zotlabs/Module/Admin/Site.php:272 ../../Zotlabs/Widget/Admin.php:22
msgid "Site"
msgstr "Sitio"
-#: ../../Zotlabs/Module/Admin/Site.php:272
+#: ../../Zotlabs/Module/Admin/Site.php:274
#: ../../Zotlabs/Module/Register.php:251
msgid "Registration"
msgstr "Registro"
-#: ../../Zotlabs/Module/Admin/Site.php:273
+#: ../../Zotlabs/Module/Admin/Site.php:275
msgid "File upload"
msgstr "Subir fichero"
-#: ../../Zotlabs/Module/Admin/Site.php:274
+#: ../../Zotlabs/Module/Admin/Site.php:276
msgid "Policies"
msgstr "Políticas"
-#: ../../Zotlabs/Module/Admin/Site.php:275
+#: ../../Zotlabs/Module/Admin/Site.php:277
#: ../../include/contact_widgets.php:16
msgid "Advanced"
msgstr "Avanzado"
-#: ../../Zotlabs/Module/Admin/Site.php:279
+#: ../../Zotlabs/Module/Admin/Site.php:281
#: ../../addon/statusnet/statusnet.php:890
msgid "Site name"
msgstr "Nombre del sitio"
-#: ../../Zotlabs/Module/Admin/Site.php:281
+#: ../../Zotlabs/Module/Admin/Site.php:283
msgid "Site default technical skill level"
msgstr "Nivel de habilidad técnica predeterminado del sitio"
-#: ../../Zotlabs/Module/Admin/Site.php:281
+#: ../../Zotlabs/Module/Admin/Site.php:283
msgid "Used to provide a member experience matched to technical comfort level"
msgstr "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica"
-#: ../../Zotlabs/Module/Admin/Site.php:283
+#: ../../Zotlabs/Module/Admin/Site.php:285
msgid "Lock the technical skill level setting"
msgstr "Bloquear el ajuste del nivel de habilidad técnica"
-#: ../../Zotlabs/Module/Admin/Site.php:283
+#: ../../Zotlabs/Module/Admin/Site.php:285
msgid "Members can set their own technical comfort level by default"
msgstr "Los miembros pueden configurar su nivel de comodidad técnica por defecto"
-#: ../../Zotlabs/Module/Admin/Site.php:285
+#: ../../Zotlabs/Module/Admin/Site.php:287
msgid "Banner/Logo"
msgstr "Banner/Logo"
-#: ../../Zotlabs/Module/Admin/Site.php:286
+#: ../../Zotlabs/Module/Admin/Site.php:288
msgid "Administrator Information"
msgstr "Información del Administrador"
-#: ../../Zotlabs/Module/Admin/Site.php:286
+#: ../../Zotlabs/Module/Admin/Site.php:288
msgid ""
"Contact information for site administrators. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"
-#: ../../Zotlabs/Module/Admin/Site.php:287
+#: ../../Zotlabs/Module/Admin/Site.php:289
#: ../../Zotlabs/Module/Siteinfo.php:22
msgid "Site Information"
msgstr "Información sobre el sitio"
-#: ../../Zotlabs/Module/Admin/Site.php:287
+#: ../../Zotlabs/Module/Admin/Site.php:289
msgid ""
"Publicly visible description of this site. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"
-#: ../../Zotlabs/Module/Admin/Site.php:288
+#: ../../Zotlabs/Module/Admin/Site.php:290
msgid "System language"
msgstr "Idioma del sistema"
-#: ../../Zotlabs/Module/Admin/Site.php:289
+#: ../../Zotlabs/Module/Admin/Site.php:291
msgid "System theme"
msgstr "Tema gráfico del sistema"
-#: ../../Zotlabs/Module/Admin/Site.php:289
+#: ../../Zotlabs/Module/Admin/Site.php:291
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - <a href='#' id='cnftheme'>modificar los ajustes del tema</a>"
-#: ../../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 <a "
"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
@@ -3277,9 +3280,9 @@ msgstr "Algunos permisos pueden ser heredados de los <a href=\"settings\"><stron
#: ../../Zotlabs/Module/Settings/Channel.php:67
#: ../../Zotlabs/Module/Settings/Channel.php:70
#: ../../Zotlabs/Module/Settings/Channel.php:81
-#: ../../Zotlabs/Module/Connedit.php:707 ../../Zotlabs/Widget/Affinity.php:28
-#: ../../include/selectors.php:123 ../../include/channel.php:408
-#: ../../include/channel.php:409 ../../include/channel.php:416
+#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:28
+#: ../../include/selectors.php:123 ../../include/channel.php:423
+#: ../../include/channel.php:424 ../../include/channel.php:431
msgid "Friends"
msgstr "Amigos/as"
@@ -3333,7 +3336,7 @@ msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"
#: ../../Zotlabs/Module/Settings/Channel.php:408
-#: ../../Zotlabs/Module/Profile_photo.php:429
+#: ../../Zotlabs/Module/Profile_photo.php:437
#: ../../Zotlabs/Module/Cover_photo.php:365
msgid "or"
msgstr "o"
@@ -3355,7 +3358,7 @@ msgid "Basic Settings"
msgstr "Configuración básica"
#: ../../Zotlabs/Module/Settings/Channel.php:486
-#: ../../include/channel.php:1373
+#: ../../include/channel.php:1473
msgid "Full Name:"
msgstr "Nombre completo:"
@@ -3472,8 +3475,8 @@ msgid "May reduce spam activity"
msgstr "Podría reducir la actividad de spam"
#: ../../Zotlabs/Module/Settings/Channel.php:512
-msgid "Default Access Control List (ACL)"
-msgstr "Lista de control de acceso (ACL) por defecto"
+msgid "Default Privacy Group"
+msgstr "Grupo de canales por defecto"
#: ../../Zotlabs/Module/Settings/Channel.php:514
msgid "Use my default audience setting for the type of object published"
@@ -3726,7 +3729,7 @@ msgid "Expires (yyyy-mm-dd)"
msgstr "Expira (aaaa-mm-dd)"
#: ../../Zotlabs/Module/Settings/Tokens.php:160
-#: ../../Zotlabs/Module/Connedit.php:903
+#: ../../Zotlabs/Module/Connedit.php:907
msgid "Their Settings"
msgstr "Sus ajustes"
@@ -3836,107 +3839,107 @@ msgstr "Sin tema especial para dispositivos móviles"
msgid "%s - (Experimental)"
msgstr "%s - (Experimental)"
-#: ../../Zotlabs/Module/Settings/Display.php:198
+#: ../../Zotlabs/Module/Settings/Display.php:202
msgid "Display Settings"
msgstr "Ajustes de visualización"
-#: ../../Zotlabs/Module/Settings/Display.php:199
+#: ../../Zotlabs/Module/Settings/Display.php:203
msgid "Theme Settings"
msgstr "Ajustes del tema"
-#: ../../Zotlabs/Module/Settings/Display.php:200
+#: ../../Zotlabs/Module/Settings/Display.php:204
msgid "Custom Theme Settings"
msgstr "Ajustes personalizados del tema"
-#: ../../Zotlabs/Module/Settings/Display.php:201
+#: ../../Zotlabs/Module/Settings/Display.php:205
msgid "Content Settings"
msgstr "Ajustes del contenido"
-#: ../../Zotlabs/Module/Settings/Display.php:207
+#: ../../Zotlabs/Module/Settings/Display.php:211
msgid "Display Theme:"
msgstr "Tema gráfico del perfil:"
-#: ../../Zotlabs/Module/Settings/Display.php:208
+#: ../../Zotlabs/Module/Settings/Display.php:212
msgid "Select scheme"
msgstr "Elegir un esquema"
-#: ../../Zotlabs/Module/Settings/Display.php:210
+#: ../../Zotlabs/Module/Settings/Display.php:214
msgid "Mobile Theme:"
msgstr "Tema para el móvil:"
-#: ../../Zotlabs/Module/Settings/Display.php:211
+#: ../../Zotlabs/Module/Settings/Display.php:215
msgid "Preload images before rendering the page"
msgstr "Carga previa de las imágenes antes de generar la página"
-#: ../../Zotlabs/Module/Settings/Display.php:211
+#: ../../Zotlabs/Module/Settings/Display.php:215
msgid ""
"The subjective page load time will be longer but the page will be ready when"
" displayed"
msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."
-#: ../../Zotlabs/Module/Settings/Display.php:212
+#: ../../Zotlabs/Module/Settings/Display.php:216
msgid "Enable user zoom on mobile devices"
msgstr "Habilitar zoom de usuario en dispositivos móviles"
-#: ../../Zotlabs/Module/Settings/Display.php:213
+#: ../../Zotlabs/Module/Settings/Display.php:217
msgid "Update browser every xx seconds"
msgstr "Actualizar navegador cada xx segundos"
-#: ../../Zotlabs/Module/Settings/Display.php:213
+#: ../../Zotlabs/Module/Settings/Display.php:217
msgid "Minimum of 10 seconds, no maximum"
msgstr "Mínimo de 10 segundos, sin máximo"
-#: ../../Zotlabs/Module/Settings/Display.php:214
+#: ../../Zotlabs/Module/Settings/Display.php:218
msgid "Maximum number of conversations to load at any time:"
msgstr "Máximo número de conversaciones a cargar en cualquier momento:"
-#: ../../Zotlabs/Module/Settings/Display.php:214
+#: ../../Zotlabs/Module/Settings/Display.php:218
msgid "Maximum of 100 items"
msgstr "Máximo de 100 elementos"
-#: ../../Zotlabs/Module/Settings/Display.php:215
+#: ../../Zotlabs/Module/Settings/Display.php:219
msgid "Show emoticons (smilies) as images"
msgstr "Mostrar emoticonos (smilies) como imágenes"
-#: ../../Zotlabs/Module/Settings/Display.php:216
+#: ../../Zotlabs/Module/Settings/Display.php:220
msgid "Manual conversation updates"
msgstr "Actualizaciones manuales de la conversación"
-#: ../../Zotlabs/Module/Settings/Display.php:216
+#: ../../Zotlabs/Module/Settings/Display.php:220
msgid "Default is on, turning this off may increase screen jumping"
msgstr "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla"
-#: ../../Zotlabs/Module/Settings/Display.php:217
+#: ../../Zotlabs/Module/Settings/Display.php:221
msgid "Link post titles to source"
msgstr "Enlazar título de la publicación a la fuente original"
-#: ../../Zotlabs/Module/Settings/Display.php:218
+#: ../../Zotlabs/Module/Settings/Display.php:222
msgid "System Page Layout Editor - (advanced)"
msgstr "Editor de plantilla de página del sistema - (avanzado)"
-#: ../../Zotlabs/Module/Settings/Display.php:221
+#: ../../Zotlabs/Module/Settings/Display.php:225
msgid "Use blog/list mode on channel page"
msgstr "Usar modo blog/lista en la página de inicio del canal"
-#: ../../Zotlabs/Module/Settings/Display.php:221
-#: ../../Zotlabs/Module/Settings/Display.php:222
+#: ../../Zotlabs/Module/Settings/Display.php:225
+#: ../../Zotlabs/Module/Settings/Display.php:226
msgid "(comments displayed separately)"
msgstr "(comentarios mostrados de forma separada)"
-#: ../../Zotlabs/Module/Settings/Display.php:222
+#: ../../Zotlabs/Module/Settings/Display.php:226
msgid "Use blog/list mode on grid page"
msgstr "Mostrar mi red en modo blog"
-#: ../../Zotlabs/Module/Settings/Display.php:223
+#: ../../Zotlabs/Module/Settings/Display.php:227
msgid "Channel page max height of content (in pixels)"
msgstr "Altura máxima del contenido de la página del canal (en píxeles)"
-#: ../../Zotlabs/Module/Settings/Display.php:223
-#: ../../Zotlabs/Module/Settings/Display.php:224
+#: ../../Zotlabs/Module/Settings/Display.php:227
+#: ../../Zotlabs/Module/Settings/Display.php:228
msgid "click to expand content exceeding this height"
msgstr "Pulsar para expandir el contenido que exceda de esta altura"
-#: ../../Zotlabs/Module/Settings/Display.php:224
+#: ../../Zotlabs/Module/Settings/Display.php:228
msgid "Grid page max height of content (in pixels)"
msgstr "Altura máxima del contenido de mi red (en píxeles)"
@@ -4017,20 +4020,20 @@ msgid "Remove authorization"
msgstr "Eliminar autorización"
#: ../../Zotlabs/Module/Embedphotos.php:140
-#: ../../Zotlabs/Module/Photos.php:753 ../../Zotlabs/Module/Photos.php:1292
+#: ../../Zotlabs/Module/Photos.php:758 ../../Zotlabs/Module/Photos.php:1297
#: ../../Zotlabs/Widget/Portfolio.php:78 ../../Zotlabs/Widget/Album.php:78
msgid "View Photo"
msgstr "Ver foto"
#: ../../Zotlabs/Module/Embedphotos.php:156
-#: ../../Zotlabs/Module/Photos.php:784 ../../Zotlabs/Widget/Portfolio.php:97
+#: ../../Zotlabs/Module/Photos.php:789 ../../Zotlabs/Widget/Portfolio.php:97
#: ../../Zotlabs/Widget/Album.php:95
msgid "Edit Album"
msgstr "Editar álbum"
#: ../../Zotlabs/Module/Embedphotos.php:158
-#: ../../Zotlabs/Module/Photos.php:786 ../../Zotlabs/Module/Photos.php:1323
-#: ../../Zotlabs/Module/Profile_photo.php:423
+#: ../../Zotlabs/Module/Photos.php:791 ../../Zotlabs/Module/Photos.php:1328
+#: ../../Zotlabs/Module/Profile_photo.php:431
#: ../../Zotlabs/Module/Cover_photo.php:361
#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:337
#: ../../Zotlabs/Widget/Cdav.php:132 ../../Zotlabs/Widget/Cdav.php:168
@@ -4042,77 +4045,77 @@ msgstr "Subir"
msgid "Some blurb about what to do when you're new here"
msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"
-#: ../../Zotlabs/Module/Thing.php:114
+#: ../../Zotlabs/Module/Thing.php:115
msgid "Thing updated"
msgstr "Elemento actualizado."
-#: ../../Zotlabs/Module/Thing.php:166
+#: ../../Zotlabs/Module/Thing.php:167
msgid "Object store: failed"
msgstr "Guardar objeto: ha fallado"
-#: ../../Zotlabs/Module/Thing.php:170
+#: ../../Zotlabs/Module/Thing.php:171
msgid "Thing added"
msgstr "Elemento añadido"
-#: ../../Zotlabs/Module/Thing.php:196
+#: ../../Zotlabs/Module/Thing.php:197
#, php-format
msgid "OBJ: %1$s %2$s %3$s"
msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../Zotlabs/Module/Thing.php:259
+#: ../../Zotlabs/Module/Thing.php:260
msgid "Show Thing"
msgstr "Mostrar elemento"
-#: ../../Zotlabs/Module/Thing.php:266
+#: ../../Zotlabs/Module/Thing.php:267
msgid "item not found."
msgstr "elemento no encontrado."
-#: ../../Zotlabs/Module/Thing.php:299
+#: ../../Zotlabs/Module/Thing.php:300
msgid "Edit Thing"
msgstr "Editar elemento"
-#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355
+#: ../../Zotlabs/Module/Thing.php:302 ../../Zotlabs/Module/Thing.php:359
msgid "Select a profile"
msgstr "Seleccionar un perfil"
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358
+#: ../../Zotlabs/Module/Thing.php:306 ../../Zotlabs/Module/Thing.php:362
msgid "Post an activity"
msgstr "Publicar una actividad"
-#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358
+#: ../../Zotlabs/Module/Thing.php:306 ../../Zotlabs/Module/Thing.php:362
msgid "Only sends to viewers of the applicable profile"
msgstr "Sólo enviar a espectadores del perfil pertinente."
-#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360
+#: ../../Zotlabs/Module/Thing.php:308 ../../Zotlabs/Module/Thing.php:364
msgid "Name of thing e.g. something"
msgstr "Nombre del elemento, p. ej.:. \"algo\""
-#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361
+#: ../../Zotlabs/Module/Thing.php:310 ../../Zotlabs/Module/Thing.php:365
msgid "URL of thing (optional)"
msgstr "Dirección del elemento (opcional)"
-#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362
+#: ../../Zotlabs/Module/Thing.php:312 ../../Zotlabs/Module/Thing.php:366
msgid "URL for photo of thing (optional)"
msgstr "Dirección para la foto o elemento (opcional)"
-#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363
-#: ../../Zotlabs/Module/Photos.php:649 ../../Zotlabs/Module/Photos.php:1013
-#: ../../Zotlabs/Module/Connedit.php:672 ../../Zotlabs/Module/Chat.php:235
+#: ../../Zotlabs/Module/Thing.php:314 ../../Zotlabs/Module/Thing.php:367
+#: ../../Zotlabs/Module/Photos.php:649 ../../Zotlabs/Module/Photos.php:1018
+#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235
#: ../../Zotlabs/Module/Filestorage.php:142
#: ../../include/acl_selectors.php:218
msgid "Permissions"
msgstr "Permisos"
-#: ../../Zotlabs/Module/Thing.php:353
+#: ../../Zotlabs/Module/Thing.php:357
msgid "Add Thing to your Profile"
msgstr "Añadir alguna cosa a su perfil"
-#: ../../Zotlabs/Module/Notify.php:57
+#: ../../Zotlabs/Module/Notify.php:61
#: ../../Zotlabs/Module/Notifications.php:38
msgid "No more system notifications."
msgstr "No hay más notificaciones del sistema"
-#: ../../Zotlabs/Module/Notify.php:61
+#: ../../Zotlabs/Module/Notify.php:65
#: ../../Zotlabs/Module/Notifications.php:42
msgid "System Notifications"
msgstr "Notificaciones del sistema"
@@ -4130,43 +4133,43 @@ msgstr "Su paquete de servicios solo permite %d canales."
msgid "No channel. Import failed."
msgstr "No hay canal. La importación ha fallado"
-#: ../../Zotlabs/Module/Import.php:470
+#: ../../Zotlabs/Module/Import.php:481
#: ../../addon/diaspora/import_diaspora.php:142
msgid "Import completed."
msgstr "Importación completada."
-#: ../../Zotlabs/Module/Import.php:498
+#: ../../Zotlabs/Module/Import.php:509
msgid "You must be logged in to use this feature."
msgstr "Debe estar registrado para poder usar esta funcionalidad."
-#: ../../Zotlabs/Module/Import.php:503
+#: ../../Zotlabs/Module/Import.php:514
msgid "Import Channel"
msgstr "Importar canal"
-#: ../../Zotlabs/Module/Import.php:504
+#: ../../Zotlabs/Module/Import.php:515
msgid ""
"Use this form to import an existing channel from a different server/hub. You"
" may retrieve the channel identity from the old server/hub via the network "
"or provide an export file."
msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."
-#: ../../Zotlabs/Module/Import.php:506
+#: ../../Zotlabs/Module/Import.php:517
msgid "Or provide the old server/hub details"
msgstr "O proporcione los detalles de su antiguo servidor/hub"
-#: ../../Zotlabs/Module/Import.php:507
+#: ../../Zotlabs/Module/Import.php:518
msgid "Your old identity address (xyz@example.com)"
msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)"
-#: ../../Zotlabs/Module/Import.php:508
+#: ../../Zotlabs/Module/Import.php:519
msgid "Your old login email address"
msgstr "Su antigua dirección de correo electrónico"
-#: ../../Zotlabs/Module/Import.php:509
+#: ../../Zotlabs/Module/Import.php:520
msgid "Your old login password"
msgstr "Su antigua contraseña"
-#: ../../Zotlabs/Module/Import.php:510
+#: ../../Zotlabs/Module/Import.php:521
msgid ""
"For either option, please choose whether to make this hub your new primary "
"address, or whether your old location should continue this role. You will be"
@@ -4174,19 +4177,19 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."
-#: ../../Zotlabs/Module/Import.php:511
+#: ../../Zotlabs/Module/Import.php:522
msgid "Make this hub my primary location"
msgstr "Convertir este servidor en mi ubicación primaria"
-#: ../../Zotlabs/Module/Import.php:512
+#: ../../Zotlabs/Module/Import.php:523
msgid "Move this channel (disable all previous locations)"
msgstr "Mover este canal (desactivar todas las ubicaciones anteriores)"
-#: ../../Zotlabs/Module/Import.php:513
+#: ../../Zotlabs/Module/Import.php:524
msgid "Import a few months of posts if possible (limited by available memory"
msgstr "Importar unos meses de mensajes si es posible (limitado por la memoria disponible"
-#: ../../Zotlabs/Module/Import.php:514
+#: ../../Zotlabs/Module/Import.php:525
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -4196,21 +4199,22 @@ msgstr "Este proceso puede tardar varios minutos en completarse. Por favor enví
msgid "Authentication failed."
msgstr "Falló la autenticación."
-#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:2102
+#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1640
+#: ../../include/channel.php:2204
msgid "Remote Authentication"
msgstr "Acceso desde su servidor"
-#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2103
+#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2205
msgid "Enter your channel address (e.g. channel@example.com)"
msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"
-#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2104
+#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2206
msgid "Authenticate"
msgstr "Acceder"
#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Chanview.php:96
#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Wall_upload.php:31
-#: ../../Zotlabs/Module/Block.php:41
+#: ../../Zotlabs/Module/Block.php:41 ../../Zotlabs/Module/Card_edit.php:44
msgid "Channel not found."
msgstr "Canal no encontrado."
@@ -4218,7 +4222,7 @@ msgstr "Canal no encontrado."
msgid "Permissions denied."
msgstr "Permisos denegados."
-#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2304
+#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2312
msgid "Import"
msgstr "Importar"
@@ -4246,11 +4250,13 @@ msgstr "Elemento no disponible"
#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207
#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288
-#: ../../Zotlabs/Module/Mail.php:430 ../../include/conversation.php:1225
+#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101
+#: ../../include/conversation.php:1261
msgid "Insert web link"
msgstr "Insertar enlace web"
-#: ../../Zotlabs/Module/Editblock.php:129 ../../include/conversation.php:1336
+#: ../../Zotlabs/Module/Editblock.php:129
+#: ../../Zotlabs/Module/Card_edit.php:117 ../../include/conversation.php:1381
msgid "Title (optional)"
msgstr "Título (opcional)"
@@ -4262,15 +4268,15 @@ msgstr "Modificar este bloque"
msgid "vcard"
msgstr "vcard"
-#: ../../Zotlabs/Module/Apps.php:45 ../../Zotlabs/Lib/Apps.php:224
+#: ../../Zotlabs/Module/Apps.php:47 ../../Zotlabs/Lib/Apps.php:223
msgid "Apps"
msgstr "Aplicaciones (apps)"
-#: ../../Zotlabs/Module/Apps.php:48
+#: ../../Zotlabs/Module/Apps.php:50
msgid "Manage apps"
msgstr "Gestionar las aplicaciones"
-#: ../../Zotlabs/Module/Apps.php:49
+#: ../../Zotlabs/Module/Apps.php:51
msgid "Create new app"
msgstr "Crear una nueva aplicación"
@@ -4280,8 +4286,7 @@ msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s está %2$s"
-#: ../../Zotlabs/Module/Mood.php:120 ../../Zotlabs/Module/Mood.php:135
-#: ../../Zotlabs/Lib/Apps.php:247
+#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:247
msgid "Mood"
msgstr "Estado de ánimo"
@@ -4289,12 +4294,6 @@ msgstr "Estado de ánimo"
msgid "Set your current mood and tell your friends"
msgstr "Describir su estado de ánimo para comunicárselo a sus amigos"
-#: ../../Zotlabs/Module/Connections.php:33
-#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229
-#: ../../include/text.php:951 ../../include/nav.php:180
-msgid "Connections"
-msgstr "Conexiones"
-
#: ../../Zotlabs/Module/Connections.php:54
#: ../../Zotlabs/Module/Connections.php:156
#: ../../Zotlabs/Module/Connections.php:245
@@ -4320,17 +4319,18 @@ msgstr "Archivado o inaccesible"
#: ../../Zotlabs/Module/Connections.php:74
#: ../../Zotlabs/Module/Connections.php:83 ../../Zotlabs/Module/Menu.php:116
-#: ../../include/conversation.php:1663
+#: ../../include/conversation.php:1697
msgid "New"
msgstr "Nuevas"
#: ../../Zotlabs/Module/Connections.php:88
#: ../../Zotlabs/Module/Connections.php:102
-#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:30
+#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:30
msgid "All"
msgstr "Todos/as"
#: ../../Zotlabs/Module/Connections.php:133
+#: ../../Zotlabs/Widget/Notifications.php:80
msgid "New Connections"
msgstr "Nuevas conexiones"
@@ -4412,7 +4412,7 @@ msgid "Ignore connection"
msgstr "Ignorar esta conexión"
#: ../../Zotlabs/Module/Connections.php:284
-#: ../../Zotlabs/Module/Connedit.php:626
+#: ../../Zotlabs/Module/Connedit.php:630
msgid "Ignore"
msgstr "Ignorar"
@@ -4420,6 +4420,11 @@ msgstr "Ignorar"
msgid "Recent activity"
msgstr "Actividad reciente"
+#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229
+#: ../../include/text.php:959 ../../include/nav.php:107
+msgid "Connections"
+msgstr "Conexiones"
+
#: ../../Zotlabs/Module/Connections.php:314
msgid "Search your connections"
msgstr "Buscar sus conexiones"
@@ -4442,10 +4447,6 @@ msgstr "elemento"
msgid "Source of Item"
msgstr "Origen del elemento"
-#: ../../Zotlabs/Module/Bookmarks.php:11 ../../Zotlabs/Lib/Apps.php:227
-msgid "View Bookmarks"
-msgstr "Ver los marcadores"
-
#: ../../Zotlabs/Module/Bookmarks.php:56
msgid "Bookmark added"
msgstr "Marcador añadido"
@@ -4498,7 +4499,7 @@ msgstr "Álbum no encontrado."
msgid "Delete Album"
msgstr "Borrar álbum"
-#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1025
+#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1030
msgid "Delete Photo"
msgstr "Borrar foto"
@@ -4510,12 +4511,6 @@ msgstr "No hay fotos seleccionadas"
msgid "Access to this item is restricted."
msgstr "El acceso a este elemento está restringido."
-#: ../../Zotlabs/Module/Photos.php:558 ../../Zotlabs/Module/Fbrowser.php:29
-#: ../../Zotlabs/Lib/Apps.php:242 ../../include/conversation.php:1780
-#: ../../include/nav.php:378
-msgid "Photos"
-msgstr "Fotos"
-
#: ../../Zotlabs/Module/Photos.php:593
#, php-format
msgid "%1$.2f MB of %2$.2f MB photo storage used."
@@ -4550,192 +4545,192 @@ msgstr "Título (opcional):"
msgid "Description (optional):"
msgstr "Descripción (opcional):"
-#: ../../Zotlabs/Module/Photos.php:727
+#: ../../Zotlabs/Module/Photos.php:732
msgid "Show Newest First"
msgstr "Mostrar lo más reciente primero"
-#: ../../Zotlabs/Module/Photos.php:729
+#: ../../Zotlabs/Module/Photos.php:734
msgid "Show Oldest First"
msgstr "Mostrar lo más antiguo primero"
-#: ../../Zotlabs/Module/Photos.php:834
+#: ../../Zotlabs/Module/Photos.php:839
msgid "Permission denied. Access to this item may be restricted."
msgstr "Permiso denegado. El acceso a este elemento puede estar restringido."
-#: ../../Zotlabs/Module/Photos.php:836
+#: ../../Zotlabs/Module/Photos.php:841
msgid "Photo not available"
msgstr "Foto no disponible"
-#: ../../Zotlabs/Module/Photos.php:894
+#: ../../Zotlabs/Module/Photos.php:899
msgid "Use as profile photo"
msgstr "Usar como foto del perfil"
-#: ../../Zotlabs/Module/Photos.php:895
+#: ../../Zotlabs/Module/Photos.php:900
msgid "Use as cover photo"
msgstr "Usar como imagen de portada del perfil"
-#: ../../Zotlabs/Module/Photos.php:902
+#: ../../Zotlabs/Module/Photos.php:907
msgid "Private Photo"
msgstr "Foto privada"
-#: ../../Zotlabs/Module/Photos.php:917
+#: ../../Zotlabs/Module/Photos.php:922
msgid "View Full Size"
msgstr "Ver tamaño completo"
-#: ../../Zotlabs/Module/Photos.php:999
+#: ../../Zotlabs/Module/Photos.php:1004
msgid "Edit photo"
msgstr "Editar foto"
-#: ../../Zotlabs/Module/Photos.php:1001
+#: ../../Zotlabs/Module/Photos.php:1006
msgid "Rotate CW (right)"
msgstr "Girar CW (a la derecha)"
-#: ../../Zotlabs/Module/Photos.php:1002
+#: ../../Zotlabs/Module/Photos.php:1007
msgid "Rotate CCW (left)"
msgstr "Girar CCW (a la izquierda)"
-#: ../../Zotlabs/Module/Photos.php:1005
+#: ../../Zotlabs/Module/Photos.php:1010
msgid "Move photo to album"
msgstr "Mover la foto a un álbum"
-#: ../../Zotlabs/Module/Photos.php:1006
+#: ../../Zotlabs/Module/Photos.php:1011
msgid "Enter a new album name"
msgstr "Introducir un nuevo nombre de álbum"
-#: ../../Zotlabs/Module/Photos.php:1007
+#: ../../Zotlabs/Module/Photos.php:1012
msgid "or select an existing one (doubleclick)"
msgstr "o seleccionar uno (doble click) existente"
-#: ../../Zotlabs/Module/Photos.php:1010
+#: ../../Zotlabs/Module/Photos.php:1015
msgid "Caption"
msgstr "Título"
-#: ../../Zotlabs/Module/Photos.php:1012
+#: ../../Zotlabs/Module/Photos.php:1017
msgid "Add a Tag"
msgstr "Añadir una etiqueta"
-#: ../../Zotlabs/Module/Photos.php:1020
+#: ../../Zotlabs/Module/Photos.php:1025
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"
-#: ../../Zotlabs/Module/Photos.php:1023
+#: ../../Zotlabs/Module/Photos.php:1028
msgid "Flag as adult in album view"
msgstr "Marcar como \"solo para adultos\" en el álbum"
-#: ../../Zotlabs/Module/Photos.php:1042 ../../Zotlabs/Lib/ThreadItem.php:267
+#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Lib/ThreadItem.php:271
msgid "I like this (toggle)"
msgstr "Me gusta (cambiar)"
-#: ../../Zotlabs/Module/Photos.php:1043 ../../Zotlabs/Lib/ThreadItem.php:268
+#: ../../Zotlabs/Module/Photos.php:1048 ../../Zotlabs/Lib/ThreadItem.php:272
msgid "I don't like this (toggle)"
msgstr "No me gusta esto (cambiar)"
-#: ../../Zotlabs/Module/Photos.php:1045 ../../Zotlabs/Lib/ThreadItem.php:410
-#: ../../include/conversation.php:736
+#: ../../Zotlabs/Module/Photos.php:1050 ../../Zotlabs/Lib/ThreadItem.php:416
+#: ../../include/conversation.php:768
msgid "Please wait"
msgstr "Espere por favor"
-#: ../../Zotlabs/Module/Photos.php:1061 ../../Zotlabs/Module/Photos.php:1179
-#: ../../Zotlabs/Lib/ThreadItem.php:727
+#: ../../Zotlabs/Module/Photos.php:1066 ../../Zotlabs/Module/Photos.php:1184
+#: ../../Zotlabs/Lib/ThreadItem.php:740
msgid "This is you"
msgstr "Este es usted"
-#: ../../Zotlabs/Module/Photos.php:1063 ../../Zotlabs/Module/Photos.php:1181
-#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/js_strings.php:6
+#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Photos.php:1186
+#: ../../Zotlabs/Lib/ThreadItem.php:742 ../../include/js_strings.php:6
msgid "Comment"
msgstr "Comentar"
-#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:569
+#: ../../Zotlabs/Module/Photos.php:1084 ../../include/conversation.php:594
msgctxt "title"
msgid "Likes"
msgstr "Me gusta"
-#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:569
+#: ../../Zotlabs/Module/Photos.php:1084 ../../include/conversation.php:594
msgctxt "title"
msgid "Dislikes"
msgstr "No me gusta"
-#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570
+#: ../../Zotlabs/Module/Photos.php:1085 ../../include/conversation.php:595
msgctxt "title"
msgid "Agree"
msgstr "De acuerdo"
-#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570
+#: ../../Zotlabs/Module/Photos.php:1085 ../../include/conversation.php:595
msgctxt "title"
msgid "Disagree"
msgstr "En desacuerdo"
-#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570
+#: ../../Zotlabs/Module/Photos.php:1085 ../../include/conversation.php:595
msgctxt "title"
msgid "Abstain"
msgstr "Abstención"
-#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571
+#: ../../Zotlabs/Module/Photos.php:1086 ../../include/conversation.php:596
msgctxt "title"
msgid "Attending"
msgstr "Participaré"
-#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571
+#: ../../Zotlabs/Module/Photos.php:1086 ../../include/conversation.php:596
msgctxt "title"
msgid "Not attending"
msgstr "No participaré"
-#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571
+#: ../../Zotlabs/Module/Photos.php:1086 ../../include/conversation.php:596
msgctxt "title"
msgid "Might attend"
msgstr "Quizá participe"
-#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1110
-#: ../../Zotlabs/Lib/ThreadItem.php:187 ../../Zotlabs/Lib/ThreadItem.php:199
+#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Module/Photos.php:1115
+#: ../../Zotlabs/Lib/ThreadItem.php:191 ../../Zotlabs/Lib/ThreadItem.php:203
msgid "View all"
msgstr "Ver todo"
-#: ../../Zotlabs/Module/Photos.php:1102 ../../Zotlabs/Lib/ThreadItem.php:191
-#: ../../include/conversation.php:1904 ../../include/channel.php:1391
-#: ../../include/taxonomy.php:442
+#: ../../Zotlabs/Module/Photos.php:1107 ../../Zotlabs/Lib/ThreadItem.php:195
+#: ../../include/conversation.php:1950 ../../include/channel.php:1491
+#: ../../include/taxonomy.php:520
msgctxt "noun"
msgid "Like"
msgid_plural "Likes"
msgstr[0] "Me gusta"
msgstr[1] "Me gusta"
-#: ../../Zotlabs/Module/Photos.php:1107 ../../Zotlabs/Lib/ThreadItem.php:196
-#: ../../include/conversation.php:1907
+#: ../../Zotlabs/Module/Photos.php:1112 ../../Zotlabs/Lib/ThreadItem.php:200
+#: ../../include/conversation.php:1953
msgctxt "noun"
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "No me gusta"
msgstr[1] "No me gusta"
-#: ../../Zotlabs/Module/Photos.php:1207
+#: ../../Zotlabs/Module/Photos.php:1212
msgid "Photo Tools"
msgstr "Gestión de las fotos"
-#: ../../Zotlabs/Module/Photos.php:1216
+#: ../../Zotlabs/Module/Photos.php:1221
msgid "In This Photo:"
msgstr "En esta foto:"
-#: ../../Zotlabs/Module/Photos.php:1221
+#: ../../Zotlabs/Module/Photos.php:1226
msgid "Map"
msgstr "Mapa"
-#: ../../Zotlabs/Module/Photos.php:1229 ../../Zotlabs/Lib/ThreadItem.php:399
+#: ../../Zotlabs/Module/Photos.php:1234 ../../Zotlabs/Lib/ThreadItem.php:404
msgctxt "noun"
msgid "Likes"
msgstr "Me gusta"
-#: ../../Zotlabs/Module/Photos.php:1230 ../../Zotlabs/Lib/ThreadItem.php:400
+#: ../../Zotlabs/Module/Photos.php:1235 ../../Zotlabs/Lib/ThreadItem.php:405
msgctxt "noun"
msgid "Dislikes"
msgstr "No me gusta"
-#: ../../Zotlabs/Module/Photos.php:1235 ../../Zotlabs/Lib/ThreadItem.php:405
+#: ../../Zotlabs/Module/Photos.php:1240 ../../Zotlabs/Lib/ThreadItem.php:410
#: ../../include/acl_selectors.php:220
msgid "Close"
msgstr "Cerrar"
-#: ../../Zotlabs/Module/Photos.php:1307 ../../Zotlabs/Module/Photos.php:1320
-#: ../../Zotlabs/Module/Photos.php:1321 ../../include/photos.php:526
+#: ../../Zotlabs/Module/Photos.php:1312 ../../Zotlabs/Module/Photos.php:1325
+#: ../../Zotlabs/Module/Photos.php:1326 ../../include/photos.php:601
msgid "Recent Photos"
msgstr "Fotos recientes"
@@ -4751,165 +4746,206 @@ msgstr "No encontrado"
msgid "Invalid channel"
msgstr "Canal no válido"
-#: ../../Zotlabs/Module/Wiki.php:79 ../../Zotlabs/Lib/Apps.php:239
-#: ../../include/conversation.php:1854 ../../include/features.php:95
-#: ../../include/nav.php:451
-msgid "Wiki"
-msgstr "Wiki"
+#: ../../Zotlabs/Module/Wiki.php:124 ../../addon/gitwiki/Mod_Gitwiki.php:107
+msgid "Error retrieving wiki"
+msgstr "Error al recuperar el wiki"
+
+#: ../../Zotlabs/Module/Wiki.php:131 ../../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"
+
+#: ../../Zotlabs/Module/Wiki.php:182 ../../addon/gitwiki/Mod_Gitwiki.php:132
+msgid "Error downloading wiki: "
+msgstr "Error al descargar el wiki: "
-#: ../../Zotlabs/Module/Wiki.php:162 ../../addon/gitwiki/Mod_Gitwiki.php:146
-#: ../../include/conversation.php:1851 ../../include/nav.php:448
+#: ../../Zotlabs/Module/Wiki.php:197 ../../addon/gitwiki/Mod_Gitwiki.php:146
+#: ../../include/conversation.php:1897 ../../include/nav.php:504
msgid "Wikis"
msgstr "Wikis"
-#: ../../Zotlabs/Module/Wiki.php:168 ../../addon/gitwiki/Mod_Gitwiki.php:152
+#: ../../Zotlabs/Module/Wiki.php:203 ../../addon/gitwiki/Mod_Gitwiki.php:152
msgid "Download"
msgstr "Descargar"
-#: ../../Zotlabs/Module/Wiki.php:170 ../../Zotlabs/Module/Chat.php:256
+#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256
#: ../../Zotlabs/Module/Profiles.php:834 ../../Zotlabs/Module/Manage.php:145
#: ../../addon/gitwiki/Mod_Gitwiki.php:154
msgid "Create New"
msgstr "Crear"
-#: ../../Zotlabs/Module/Wiki.php:172 ../../addon/gitwiki/Mod_Gitwiki.php:156
+#: ../../Zotlabs/Module/Wiki.php:207 ../../addon/gitwiki/Mod_Gitwiki.php:156
msgid "Wiki name"
msgstr "Nombre del wiki"
-#: ../../Zotlabs/Module/Wiki.php:173 ../../addon/gitwiki/Mod_Gitwiki.php:157
+#: ../../Zotlabs/Module/Wiki.php:208 ../../addon/gitwiki/Mod_Gitwiki.php:157
msgid "Content type"
msgstr "Tipo de contenido"
-#: ../../Zotlabs/Module/Wiki.php:175 ../../Zotlabs/Storage/Browser.php:235
+#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:336
+#: ../../Zotlabs/Widget/Wiki_pages.php:57 ../../include/text.php:1802
+msgid "Markdown"
+msgstr "Markdown"
+
+#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:336
+#: ../../Zotlabs/Widget/Wiki_pages.php:57 ../../include/text.php:1800
+msgid "BBcode"
+msgstr "BBcode"
+
+#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:57
+#: ../../include/text.php:1803
+msgid "Text"
+msgstr "Texto"
+
+#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:235
#: ../../addon/gitwiki/Mod_Gitwiki.php:159
msgid "Type"
msgstr "Tipo"
-#: ../../Zotlabs/Module/Wiki.php:182 ../../addon/gitwiki/Mod_Gitwiki.php:166
+#: ../../Zotlabs/Module/Wiki.php:211
+msgid "Any&nbsp;type"
+msgstr "Cualquier tipo"
+
+#: ../../Zotlabs/Module/Wiki.php:218
+msgid "Lock content type"
+msgstr "Tipo de contenido bloqueado"
+
+#: ../../Zotlabs/Module/Wiki.php:219 ../../addon/gitwiki/Mod_Gitwiki.php:166
msgid "Create a status post for this wiki"
msgstr "Crear un mensaje de estado para este wiki"
-#: ../../Zotlabs/Module/Wiki.php:224 ../../addon/gitwiki/Mod_Gitwiki.php:185
+#: ../../Zotlabs/Module/Wiki.php:220
+msgid "Edit Wiki Name"
+msgstr "Editar el nombre del wiki"
+
+#: ../../Zotlabs/Module/Wiki.php:262 ../../addon/gitwiki/Mod_Gitwiki.php:185
msgid "Wiki not found"
msgstr "Wiki no encontrado"
-#: ../../Zotlabs/Module/Wiki.php:248 ../../addon/gitwiki/Mod_Gitwiki.php:210
+#: ../../Zotlabs/Module/Wiki.php:286 ../../addon/gitwiki/Mod_Gitwiki.php:210
msgid "Rename page"
msgstr "Renombrar la página"
-#: ../../Zotlabs/Module/Wiki.php:258 ../../addon/gitwiki/Mod_Gitwiki.php:214
+#: ../../Zotlabs/Module/Wiki.php:296 ../../addon/gitwiki/Mod_Gitwiki.php:214
msgid "Error retrieving page content"
msgstr "Error al recuperar el contenido de la página"
-#: ../../Zotlabs/Module/Wiki.php:264
+#: ../../Zotlabs/Module/Wiki.php:302 ../../Zotlabs/Module/Wiki.php:304
msgid "New page"
msgstr "Nueva página"
-#: ../../Zotlabs/Module/Wiki.php:288 ../../addon/gitwiki/Mod_Gitwiki.php:242
+#: ../../Zotlabs/Module/Wiki.php:331 ../../addon/gitwiki/Mod_Gitwiki.php:242
msgid "Revision Comparison"
msgstr "Comparación de revisiones"
-#: ../../Zotlabs/Module/Wiki.php:289 ../../addon/gitwiki/Mod_Gitwiki.php:243
+#: ../../Zotlabs/Module/Wiki.php:332 ../../addon/gitwiki/Mod_Gitwiki.php:243
msgid "Revert"
msgstr "Revertir"
-#: ../../Zotlabs/Module/Wiki.php:293
+#: ../../Zotlabs/Module/Wiki.php:339
msgid "Short description of your changes (optional)"
msgstr "Breve descripción de sus cambios (opcional)"
-#: ../../Zotlabs/Module/Wiki.php:300 ../../addon/gitwiki/Mod_Gitwiki.php:252
+#: ../../Zotlabs/Module/Wiki.php:346 ../../addon/gitwiki/Mod_Gitwiki.php:252
msgid "Source"
msgstr "Fuente"
-#: ../../Zotlabs/Module/Wiki.php:309 ../../addon/gitwiki/Mod_Gitwiki.php:260
+#: ../../Zotlabs/Module/Wiki.php:356 ../../addon/gitwiki/Mod_Gitwiki.php:260
msgid "New page name"
msgstr "Nombre de la nueva página"
-#: ../../Zotlabs/Module/Wiki.php:314 ../../addon/gitwiki/Mod_Gitwiki.php:265
-#: ../../include/conversation.php:1229
+#: ../../Zotlabs/Module/Wiki.php:361 ../../addon/gitwiki/Mod_Gitwiki.php:265
+#: ../../include/conversation.php:1265
msgid "Embed image from photo albums"
msgstr "Incluir una imagen de los álbumes de fotos"
-#: ../../Zotlabs/Module/Wiki.php:315 ../../addon/gitwiki/Mod_Gitwiki.php:266
-#: ../../include/conversation.php:1323
+#: ../../Zotlabs/Module/Wiki.php:362 ../../addon/gitwiki/Mod_Gitwiki.php:266
+#: ../../include/conversation.php:1368
msgid "Embed an image from your albums"
msgstr "Incluir una imagen de sus álbumes"
-#: ../../Zotlabs/Module/Wiki.php:317 ../../addon/gitwiki/Mod_Gitwiki.php:268
-#: ../../include/conversation.php:1325 ../../include/conversation.php:1372
+#: ../../Zotlabs/Module/Wiki.php:364 ../../addon/gitwiki/Mod_Gitwiki.php:268
+#: ../../include/conversation.php:1370 ../../include/conversation.php:1417
msgid "OK"
msgstr "OK"
-#: ../../Zotlabs/Module/Wiki.php:318 ../../addon/gitwiki/Mod_Gitwiki.php:269
-#: ../../include/conversation.php:1265
+#: ../../Zotlabs/Module/Wiki.php:365 ../../addon/gitwiki/Mod_Gitwiki.php:269
+#: ../../include/conversation.php:1301
msgid "Choose images to embed"
msgstr "Elegir imágenes para incluir"
-#: ../../Zotlabs/Module/Wiki.php:319 ../../addon/gitwiki/Mod_Gitwiki.php:270
-#: ../../include/conversation.php:1266
+#: ../../Zotlabs/Module/Wiki.php:366 ../../addon/gitwiki/Mod_Gitwiki.php:270
+#: ../../include/conversation.php:1302
msgid "Choose an album"
msgstr "Elegir un álbum"
-#: ../../Zotlabs/Module/Wiki.php:320 ../../addon/gitwiki/Mod_Gitwiki.php:271
+#: ../../Zotlabs/Module/Wiki.php:367 ../../addon/gitwiki/Mod_Gitwiki.php:271
msgid "Choose a different album"
msgstr "Elegir un álbum diferente..."
-#: ../../Zotlabs/Module/Wiki.php:321 ../../addon/gitwiki/Mod_Gitwiki.php:272
-#: ../../include/conversation.php:1268
+#: ../../Zotlabs/Module/Wiki.php:368 ../../addon/gitwiki/Mod_Gitwiki.php:272
+#: ../../include/conversation.php:1304
msgid "Error getting album list"
msgstr "Error al obtener la lista de álbumes"
-#: ../../Zotlabs/Module/Wiki.php:322 ../../addon/gitwiki/Mod_Gitwiki.php:273
-#: ../../include/conversation.php:1269
+#: ../../Zotlabs/Module/Wiki.php:369 ../../addon/gitwiki/Mod_Gitwiki.php:273
+#: ../../include/conversation.php:1305
msgid "Error getting photo link"
msgstr "Error al obtener el enlace de la foto"
-#: ../../Zotlabs/Module/Wiki.php:323 ../../addon/gitwiki/Mod_Gitwiki.php:274
-#: ../../include/conversation.php:1270
+#: ../../Zotlabs/Module/Wiki.php:370 ../../addon/gitwiki/Mod_Gitwiki.php:274
+#: ../../include/conversation.php:1306
msgid "Error getting album"
msgstr "Error al obtener el álbum"
-#: ../../Zotlabs/Module/Wiki.php:391 ../../addon/gitwiki/Mod_Gitwiki.php:337
+#: ../../Zotlabs/Module/Wiki.php:442 ../../addon/gitwiki/Mod_Gitwiki.php:337
msgid "Error creating wiki. Invalid name."
msgstr "Error al crear el wiki: el nombre no es válido."
-#: ../../Zotlabs/Module/Wiki.php:398
+#: ../../Zotlabs/Module/Wiki.php:449
msgid "A wiki with this name already exists."
msgstr "Ya hay un wiki con este nombre."
-#: ../../Zotlabs/Module/Wiki.php:411 ../../addon/gitwiki/Mod_Gitwiki.php:348
+#: ../../Zotlabs/Module/Wiki.php:462 ../../addon/gitwiki/Mod_Gitwiki.php:348
msgid "Wiki created, but error creating Home page."
msgstr "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio."
-#: ../../Zotlabs/Module/Wiki.php:418 ../../addon/gitwiki/Mod_Gitwiki.php:353
+#: ../../Zotlabs/Module/Wiki.php:469 ../../addon/gitwiki/Mod_Gitwiki.php:353
msgid "Error creating wiki"
msgstr "Error al crear el wiki"
-#: ../../Zotlabs/Module/Wiki.php:430
+#: ../../Zotlabs/Module/Wiki.php:492
+msgid "Error updating wiki. Invalid name."
+msgstr "Error al actualizar el wiki. Nombre no válido."
+
+#: ../../Zotlabs/Module/Wiki.php:512
+msgid "Error updating wiki"
+msgstr "Error al actualizar el wiki"
+
+#: ../../Zotlabs/Module/Wiki.php:527
msgid "Wiki delete permission denied."
msgstr "Se ha denegado el permiso para eliminar el wiki."
-#: ../../Zotlabs/Module/Wiki.php:440
+#: ../../Zotlabs/Module/Wiki.php:537
msgid "Error deleting wiki"
msgstr "Se ha producido un error al eliminar el wiki"
-#: ../../Zotlabs/Module/Wiki.php:466 ../../addon/gitwiki/Mod_Gitwiki.php:400
+#: ../../Zotlabs/Module/Wiki.php:565 ../../addon/gitwiki/Mod_Gitwiki.php:400
msgid "New page created"
msgstr "Se ha creado la nueva página"
-#: ../../Zotlabs/Module/Wiki.php:587
+#: ../../Zotlabs/Module/Wiki.php:686
msgid "Cannot delete Home"
msgstr "No se puede eliminar la página principal"
-#: ../../Zotlabs/Module/Wiki.php:651
+#: ../../Zotlabs/Module/Wiki.php:750
msgid "Current Revision"
msgstr "Revisión actual"
-#: ../../Zotlabs/Module/Wiki.php:651
+#: ../../Zotlabs/Module/Wiki.php:750
msgid "Selected Revision"
msgstr "Revisión seleccionada"
-#: ../../Zotlabs/Module/Wiki.php:701
+#: ../../Zotlabs/Module/Wiki.php:800
msgid "You must be authenticated."
msgstr "Debe estar autenticado."
@@ -4925,24 +4961,36 @@ msgstr "Plantilla actualizada."
msgid "Feature disabled."
msgstr "Funcionalidad deshabilitada."
-#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69
+#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:88
msgid "Edit System Page Description"
msgstr "Editor del Sistema de Descripción de Páginas"
-#: ../../Zotlabs/Module/Pdledit.php:64
+#: ../../Zotlabs/Module/Pdledit.php:68
+msgid "(modified)"
+msgstr "(modificado)"
+
+#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133
+msgid "Reset"
+msgstr "Reiniciar"
+
+#: ../../Zotlabs/Module/Pdledit.php:83
msgid "Layout not found."
msgstr "Plantilla no encontrada"
-#: ../../Zotlabs/Module/Pdledit.php:70
+#: ../../Zotlabs/Module/Pdledit.php:89
msgid "Module Name:"
msgstr "Nombre del módulo:"
-#: ../../Zotlabs/Module/Pdledit.php:71
+#: ../../Zotlabs/Module/Pdledit.php:90
msgid "Layout Help"
msgstr "Ayuda para el diseño de plantillas de página"
-#: ../../Zotlabs/Module/Poke.php:153 ../../Zotlabs/Module/Poke.php:182
-#: ../../Zotlabs/Lib/Apps.php:248 ../../include/conversation.php:1039
+#: ../../Zotlabs/Module/Pdledit.php:91
+msgid "Edit another layout"
+msgstr "Editar otro diseño"
+
+#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:248
+#: ../../include/conversation.php:1075
msgid "Poke"
msgstr "Toques y otras cosas"
@@ -4976,8 +5024,8 @@ msgid "Image uploaded but image cropping failed."
msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. "
#: ../../Zotlabs/Module/Profile_photo.php:115
-#: ../../Zotlabs/Module/Profile_photo.php:226
-#: ../../include/photo/photo_driver.php:658
+#: ../../Zotlabs/Module/Profile_photo.php:234
+#: ../../include/photo/photo_driver.php:710
msgid "Profile Photos"
msgstr "Fotos del perfil"
@@ -4986,80 +5034,80 @@ msgstr "Fotos del perfil"
msgid "Image resize failed."
msgstr "El ajuste del tamaño de la imagen ha fallado."
-#: ../../Zotlabs/Module/Profile_photo.php:196
+#: ../../Zotlabs/Module/Profile_photo.php:204
#: ../../addon/openclipatar/openclipatar.php:298
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."
-#: ../../Zotlabs/Module/Profile_photo.php:203
-#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:145
+#: ../../Zotlabs/Module/Profile_photo.php:211
+#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:156
msgid "Unable to process image"
msgstr "No ha sido posible procesar la imagen"
-#: ../../Zotlabs/Module/Profile_photo.php:238
+#: ../../Zotlabs/Module/Profile_photo.php:246
#: ../../Zotlabs/Module/Cover_photo.php:197
msgid "Image upload failed."
msgstr "La carga de la imagen ha fallado."
-#: ../../Zotlabs/Module/Profile_photo.php:257
+#: ../../Zotlabs/Module/Profile_photo.php:265
#: ../../Zotlabs/Module/Cover_photo.php:214
msgid "Unable to process image."
msgstr "No ha sido posible procesar la imagen."
-#: ../../Zotlabs/Module/Profile_photo.php:318
-#: ../../Zotlabs/Module/Profile_photo.php:365
+#: ../../Zotlabs/Module/Profile_photo.php:326
+#: ../../Zotlabs/Module/Profile_photo.php:373
#: ../../Zotlabs/Module/Cover_photo.php:307
#: ../../Zotlabs/Module/Cover_photo.php:322
msgid "Photo not available."
msgstr "Foto no disponible."
-#: ../../Zotlabs/Module/Profile_photo.php:420
+#: ../../Zotlabs/Module/Profile_photo.php:428
#: ../../Zotlabs/Module/Cover_photo.php:358
msgid "Upload File:"
msgstr "Subir fichero:"
-#: ../../Zotlabs/Module/Profile_photo.php:421
+#: ../../Zotlabs/Module/Profile_photo.php:429
#: ../../Zotlabs/Module/Cover_photo.php:359
msgid "Select a profile:"
msgstr "Seleccionar un perfil:"
-#: ../../Zotlabs/Module/Profile_photo.php:422
+#: ../../Zotlabs/Module/Profile_photo.php:430
msgid "Use Photo for Profile"
msgstr "Usar la fotografía para el perfil"
-#: ../../Zotlabs/Module/Profile_photo.php:422
+#: ../../Zotlabs/Module/Profile_photo.php:430
msgid "Upload Profile Photo"
msgstr "Subir foto de perfil"
-#: ../../Zotlabs/Module/Profile_photo.php:423
+#: ../../Zotlabs/Module/Profile_photo.php:431
#: ../../addon/openclipatar/openclipatar.php:182
#: ../../addon/openclipatar/openclipatar.php:194
msgid "Use"
msgstr "Usar"
-#: ../../Zotlabs/Module/Profile_photo.php:429
+#: ../../Zotlabs/Module/Profile_photo.php:437
#: ../../Zotlabs/Module/Cover_photo.php:365
msgid "skip this step"
msgstr "Omitir este paso"
-#: ../../Zotlabs/Module/Profile_photo.php:429
+#: ../../Zotlabs/Module/Profile_photo.php:437
#: ../../Zotlabs/Module/Cover_photo.php:365
msgid "select a photo from your photo albums"
msgstr "Seleccione una foto de sus álbumes de fotos"
-#: ../../Zotlabs/Module/Profile_photo.php:448
+#: ../../Zotlabs/Module/Profile_photo.php:456
#: ../../Zotlabs/Module/Cover_photo.php:381
msgid "Crop Image"
msgstr "Recortar imagen"
-#: ../../Zotlabs/Module/Profile_photo.php:449
+#: ../../Zotlabs/Module/Profile_photo.php:457
#: ../../Zotlabs/Module/Cover_photo.php:382
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Por favor ajuste el recorte de la imagen para una visión óptima."
-#: ../../Zotlabs/Module/Profile_photo.php:451
+#: ../../Zotlabs/Module/Profile_photo.php:459
#: ../../Zotlabs/Module/Cover_photo.php:384
msgid "Done Editing"
msgstr "Edición completada"
@@ -5080,60 +5128,68 @@ msgstr "No ha sido posible encontrar la entrada original."
msgid "Empty post discarded."
msgstr "La entrada vacía ha sido desechada."
-#: ../../Zotlabs/Module/Item.php:844
+#: ../../Zotlabs/Module/Item.php:870
msgid "Duplicate post suppressed."
msgstr "Se ha suprimido la entrada duplicada."
-#: ../../Zotlabs/Module/Item.php:989
+#: ../../Zotlabs/Module/Item.php:1015
msgid "System error. Post not saved."
msgstr "Error del sistema. La entrada no se ha podido salvar."
-#: ../../Zotlabs/Module/Item.php:1025
+#: ../../Zotlabs/Module/Item.php:1051
msgid "Your comment is awaiting approval."
msgstr "Su comentario está pendiente de aprobación."
-#: ../../Zotlabs/Module/Item.php:1123
+#: ../../Zotlabs/Module/Item.php:1156
msgid "Unable to obtain post information from database."
msgstr "No ha sido posible obtener información de la entrada en la base de datos."
-#: ../../Zotlabs/Module/Item.php:1130
+#: ../../Zotlabs/Module/Item.php:1163
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal."
-#: ../../Zotlabs/Module/Item.php:1137
+#: ../../Zotlabs/Module/Item.php:1170
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Ha alcanzado su límite de %1$.0f páginas web."
-#: ../../Zotlabs/Module/Ping.php:280
+#: ../../Zotlabs/Module/Ping.php:318
msgid "sent you a private message"
msgstr "le ha enviado un mensaje privado"
-#: ../../Zotlabs/Module/Ping.php:331
+#: ../../Zotlabs/Module/Ping.php:369
msgid "added your channel"
msgstr "añadió este canal a sus conexiones"
-#: ../../Zotlabs/Module/Ping.php:341
+#: ../../Zotlabs/Module/Ping.php:393
+msgid "requires approval"
+msgstr "requiere aprobación"
+
+#: ../../Zotlabs/Module/Ping.php:403
msgid "g A l F d"
msgstr "g A l d F"
-#: ../../Zotlabs/Module/Ping.php:359
+#: ../../Zotlabs/Module/Ping.php:421
msgid "[today]"
msgstr "[hoy]"
-#: ../../Zotlabs/Module/Ping.php:368
+#: ../../Zotlabs/Module/Ping.php:430
msgid "posted an event"
msgstr "publicó un evento"
+#: ../../Zotlabs/Module/Ping.php:463
+msgid "shared a file with you"
+msgstr "compartió un archivo con usted"
+
#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29
msgid "Invalid item."
msgstr "Elemento no válido."
#: ../../Zotlabs/Module/Page.php:128 ../../Zotlabs/Module/Block.php:77
-#: ../../Zotlabs/Module/Display.php:122
-#: ../../Zotlabs/Lib/NativeWikiPage.php:500 ../../Zotlabs/Web/Router.php:146
-#: ../../include/help.php:68
+#: ../../Zotlabs/Module/Display.php:120
+#: ../../Zotlabs/Lib/NativeWikiPage.php:515 ../../Zotlabs/Web/Router.php:158
+#: ../../include/help.php:81
msgid "Page not found."
msgstr "Página no encontrada."
@@ -5163,293 +5219,293 @@ msgstr "Conexión actualizada."
msgid "Failed to update connection record."
msgstr "Error al actualizar el registro de la conexión."
-#: ../../Zotlabs/Module/Connedit.php:298
+#: ../../Zotlabs/Module/Connedit.php:302
msgid "is now connected to"
msgstr "ahora está conectado/a"
-#: ../../Zotlabs/Module/Connedit.php:423
+#: ../../Zotlabs/Module/Connedit.php:427
msgid "Could not access address book record."
msgstr "No se pudo acceder al registro en su libreta de direcciones."
-#: ../../Zotlabs/Module/Connedit.php:471
+#: ../../Zotlabs/Module/Connedit.php:475
msgid "Refresh failed - channel is currently unavailable."
msgstr "Recarga fallida - no se puede encontrar el canal en este momento."
-#: ../../Zotlabs/Module/Connedit.php:486 ../../Zotlabs/Module/Connedit.php:495
-#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513
-#: ../../Zotlabs/Module/Connedit.php:526
+#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499
+#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517
+#: ../../Zotlabs/Module/Connedit.php:530
msgid "Unable to set address book parameters."
msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones."
-#: ../../Zotlabs/Module/Connedit.php:550
+#: ../../Zotlabs/Module/Connedit.php:554
msgid "Connection has been removed."
msgstr "La conexión ha sido eliminada."
-#: ../../Zotlabs/Module/Connedit.php:590 ../../Zotlabs/Lib/Apps.php:241
+#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:241
#: ../../addon/openclipatar/openclipatar.php:57
-#: ../../include/conversation.php:979 ../../include/nav.php:102
+#: ../../include/conversation.php:1015 ../../include/nav.php:141
msgid "View Profile"
msgstr "Ver el perfil"
-#: ../../Zotlabs/Module/Connedit.php:593
+#: ../../Zotlabs/Module/Connedit.php:597
#, php-format
msgid "View %s's profile"
msgstr "Ver el perfil de %s"
-#: ../../Zotlabs/Module/Connedit.php:597
+#: ../../Zotlabs/Module/Connedit.php:601
msgid "Refresh Permissions"
msgstr "Recargar los permisos"
-#: ../../Zotlabs/Module/Connedit.php:600
+#: ../../Zotlabs/Module/Connedit.php:604
msgid "Fetch updated permissions"
msgstr "Obtener los permisos actualizados"
-#: ../../Zotlabs/Module/Connedit.php:604
+#: ../../Zotlabs/Module/Connedit.php:608
msgid "Refresh Photo"
msgstr "Actualizar la foto"
-#: ../../Zotlabs/Module/Connedit.php:607
+#: ../../Zotlabs/Module/Connedit.php:611
msgid "Fetch updated photo"
msgstr "Obtener una foto actualizada"
-#: ../../Zotlabs/Module/Connedit.php:611
+#: ../../Zotlabs/Module/Connedit.php:615
msgid "Recent Activity"
msgstr "Actividad reciente"
-#: ../../Zotlabs/Module/Connedit.php:614
+#: ../../Zotlabs/Module/Connedit.php:618
msgid "View recent posts and comments"
msgstr "Ver publicaciones y comentarios recientes"
-#: ../../Zotlabs/Module/Connedit.php:621
+#: ../../Zotlabs/Module/Connedit.php:625
msgid "Block (or Unblock) all communications with this connection"
msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"
-#: ../../Zotlabs/Module/Connedit.php:622
+#: ../../Zotlabs/Module/Connedit.php:626
msgid "This connection is blocked!"
msgstr "¡Esta conexión está bloqueada!"
-#: ../../Zotlabs/Module/Connedit.php:626
+#: ../../Zotlabs/Module/Connedit.php:630
msgid "Unignore"
msgstr "Dejar de ignorar"
-#: ../../Zotlabs/Module/Connedit.php:629
+#: ../../Zotlabs/Module/Connedit.php:633
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"
-#: ../../Zotlabs/Module/Connedit.php:630
+#: ../../Zotlabs/Module/Connedit.php:634
msgid "This connection is ignored!"
msgstr "¡Esta conexión es ignorada!"
-#: ../../Zotlabs/Module/Connedit.php:634
+#: ../../Zotlabs/Module/Connedit.php:638
msgid "Unarchive"
msgstr "Desarchivar"
-#: ../../Zotlabs/Module/Connedit.php:634
+#: ../../Zotlabs/Module/Connedit.php:638
msgid "Archive"
msgstr "Archivar"
-#: ../../Zotlabs/Module/Connedit.php:637
+#: ../../Zotlabs/Module/Connedit.php:641
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"
-#: ../../Zotlabs/Module/Connedit.php:638
+#: ../../Zotlabs/Module/Connedit.php:642
msgid "This connection is archived!"
msgstr "¡Esta conexión esta archivada!"
-#: ../../Zotlabs/Module/Connedit.php:642
+#: ../../Zotlabs/Module/Connedit.php:646
msgid "Unhide"
msgstr "Mostrar"
-#: ../../Zotlabs/Module/Connedit.php:642
+#: ../../Zotlabs/Module/Connedit.php:646
msgid "Hide"
msgstr "Ocultar"
-#: ../../Zotlabs/Module/Connedit.php:645
+#: ../../Zotlabs/Module/Connedit.php:649
msgid "Hide or Unhide this connection from your other connections"
msgstr "Ocultar o mostrar esta conexión a sus otras conexiones"
-#: ../../Zotlabs/Module/Connedit.php:646
+#: ../../Zotlabs/Module/Connedit.php:650
msgid "This connection is hidden!"
msgstr "¡Esta conexión está oculta!"
-#: ../../Zotlabs/Module/Connedit.php:653
+#: ../../Zotlabs/Module/Connedit.php:657
msgid "Delete this connection"
msgstr "Eliminar esta conexión"
-#: ../../Zotlabs/Module/Connedit.php:661
+#: ../../Zotlabs/Module/Connedit.php:665
msgid "Fetch Vcard"
msgstr "Obtener una vcard"
-#: ../../Zotlabs/Module/Connedit.php:664
+#: ../../Zotlabs/Module/Connedit.php:668
msgid "Fetch electronic calling card for this connection"
msgstr "Obtener una tarjeta de llamada electrónica para esta conexión"
-#: ../../Zotlabs/Module/Connedit.php:675
+#: ../../Zotlabs/Module/Connedit.php:679
msgid "Open Individual Permissions section by default"
msgstr "Abrir la sección de permisos individuales por defecto"
-#: ../../Zotlabs/Module/Connedit.php:698
+#: ../../Zotlabs/Module/Connedit.php:702
msgid "Affinity"
msgstr "Afinidad"
-#: ../../Zotlabs/Module/Connedit.php:701
+#: ../../Zotlabs/Module/Connedit.php:705
msgid "Open Set Affinity section by default"
msgstr "Abrir por defecto la sección para definir la afinidad"
-#: ../../Zotlabs/Module/Connedit.php:705 ../../Zotlabs/Widget/Affinity.php:26
+#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:26
msgid "Me"
msgstr "Yo"
-#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Widget/Affinity.php:27
+#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:27
msgid "Family"
msgstr "Familia"
-#: ../../Zotlabs/Module/Connedit.php:708 ../../Zotlabs/Widget/Affinity.php:29
+#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:29
msgid "Acquaintances"
msgstr "Conocidos/as"
-#: ../../Zotlabs/Module/Connedit.php:735
+#: ../../Zotlabs/Module/Connedit.php:739
msgid "Filter"
msgstr "Filtrar"
-#: ../../Zotlabs/Module/Connedit.php:738
+#: ../../Zotlabs/Module/Connedit.php:742
msgid "Open Custom Filter section by default"
msgstr "Abrir por defecto la sección de personalización de filtros"
-#: ../../Zotlabs/Module/Connedit.php:775
+#: ../../Zotlabs/Module/Connedit.php:779
msgid "Approve this connection"
msgstr "Aprobar esta conexión"
-#: ../../Zotlabs/Module/Connedit.php:775
+#: ../../Zotlabs/Module/Connedit.php:779
msgid "Accept connection to allow communication"
msgstr "Aceptar la conexión para permitir la comunicación"
-#: ../../Zotlabs/Module/Connedit.php:780
+#: ../../Zotlabs/Module/Connedit.php:784
msgid "Set Affinity"
msgstr "Ajustar la afinidad"
-#: ../../Zotlabs/Module/Connedit.php:783
+#: ../../Zotlabs/Module/Connedit.php:787
msgid "Set Profile"
msgstr "Ajustar el perfil"
-#: ../../Zotlabs/Module/Connedit.php:786
+#: ../../Zotlabs/Module/Connedit.php:790
msgid "Set Affinity & Profile"
msgstr "Ajustar la afinidad y el perfil"
-#: ../../Zotlabs/Module/Connedit.php:851
+#: ../../Zotlabs/Module/Connedit.php:855
msgid "This connection is unreachable from this location."
msgstr "No se puede acceder a la conexión desde este sitio."
-#: ../../Zotlabs/Module/Connedit.php:852
+#: ../../Zotlabs/Module/Connedit.php:856
msgid "This connection may be unreachable from other channel locations."
msgstr "Esta conexión puede ser inaccesible desde otras ubicaciones del canal."
-#: ../../Zotlabs/Module/Connedit.php:854
+#: ../../Zotlabs/Module/Connedit.php:858
msgid "Location independence is not supported by their network."
msgstr "La independencia de ubicación no es compatible con su red."
-#: ../../Zotlabs/Module/Connedit.php:860
+#: ../../Zotlabs/Module/Connedit.php:864
msgid ""
"This connection is unreachable from this location. Location independence is "
"not supported by their network."
msgstr "Esta conexión no es accesible desde este sitio. La independencia de ubicación no es compatible con su red."
-#: ../../Zotlabs/Module/Connedit.php:863
+#: ../../Zotlabs/Module/Connedit.php:867
#: ../../Zotlabs/Widget/Settings_menu.php:109
msgid "Connection Default Permissions"
msgstr "Permisos predeterminados de conexión"
-#: ../../Zotlabs/Module/Connedit.php:863 ../../include/items.php:3925
+#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:3974
#, php-format
msgid "Connection: %s"
msgstr "Conexión: %s"
-#: ../../Zotlabs/Module/Connedit.php:864
+#: ../../Zotlabs/Module/Connedit.php:868
msgid "Apply these permissions automatically"
msgstr "Aplicar estos permisos automaticamente"
-#: ../../Zotlabs/Module/Connedit.php:864
+#: ../../Zotlabs/Module/Connedit.php:868
msgid "Connection requests will be approved without your interaction"
msgstr "Las solicitudes de conexión serán aprobadas sin su intervención"
-#: ../../Zotlabs/Module/Connedit.php:865
+#: ../../Zotlabs/Module/Connedit.php:869
msgid "Permission role"
msgstr "Rol de acceso"
-#: ../../Zotlabs/Module/Connedit.php:866
+#: ../../Zotlabs/Module/Connedit.php:870
msgid "Add permission role"
msgstr "Añadir un rol de acceso"
-#: ../../Zotlabs/Module/Connedit.php:873
+#: ../../Zotlabs/Module/Connedit.php:877
msgid "This connection's primary address is"
msgstr "La dirección primaria de esta conexión es"
-#: ../../Zotlabs/Module/Connedit.php:874
+#: ../../Zotlabs/Module/Connedit.php:878
msgid "Available locations:"
msgstr "Ubicaciones disponibles:"
-#: ../../Zotlabs/Module/Connedit.php:879
+#: ../../Zotlabs/Module/Connedit.php:883
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."
-#: ../../Zotlabs/Module/Connedit.php:880
+#: ../../Zotlabs/Module/Connedit.php:884
msgid "Connection Tools"
msgstr "Gestión de las conexiones"
-#: ../../Zotlabs/Module/Connedit.php:882
+#: ../../Zotlabs/Module/Connedit.php:886
msgid "Slide to adjust your degree of friendship"
msgstr "Deslizar para ajustar el grado de amistad"
-#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Rate.php:155
+#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155
#: ../../include/js_strings.php:20
msgid "Rating"
msgstr "Valoración"
-#: ../../Zotlabs/Module/Connedit.php:884
+#: ../../Zotlabs/Module/Connedit.php:888
msgid "Slide to adjust your rating"
msgstr "Deslizar para ajustar su valoración"
-#: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:890
+#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894
msgid "Optionally explain your rating"
msgstr "Opcionalmente, puede explicar su valoración"
-#: ../../Zotlabs/Module/Connedit.php:887
+#: ../../Zotlabs/Module/Connedit.php:891
msgid "Custom Filter"
msgstr "Filtro personalizado"
-#: ../../Zotlabs/Module/Connedit.php:888
+#: ../../Zotlabs/Module/Connedit.php:892
msgid "Only import posts with this text"
msgstr "Importar solo entradas que contengan este texto"
-#: ../../Zotlabs/Module/Connedit.php:888 ../../Zotlabs/Module/Connedit.php:889
+#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"
-#: ../../Zotlabs/Module/Connedit.php:889
+#: ../../Zotlabs/Module/Connedit.php:893
msgid "Do not import posts with this text"
msgstr "No importar entradas que contengan este texto"
-#: ../../Zotlabs/Module/Connedit.php:891
+#: ../../Zotlabs/Module/Connedit.php:895
msgid "This information is public!"
msgstr "¡Esta información es pública!"
-#: ../../Zotlabs/Module/Connedit.php:896
+#: ../../Zotlabs/Module/Connedit.php:900
msgid "Connection Pending Approval"
msgstr "Conexión pendiente de aprobación"
-#: ../../Zotlabs/Module/Connedit.php:901
+#: ../../Zotlabs/Module/Connedit.php:905
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."
-#: ../../Zotlabs/Module/Connedit.php:908
+#: ../../Zotlabs/Module/Connedit.php:912
msgid ""
"Some permissions may be inherited from your channel's <a "
"href=\"settings\"><strong>privacy settings</strong></a>, 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 <a href=\"settings\"><strong>ajustes de privacidad</strong></a> 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,6 +9769,66 @@ 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/gravatar/gravatar.php:123
+msgid "generic profile image"
+msgstr "imagen del perfil general"
+
+#: ../../addon/gravatar/gravatar.php:124
+msgid "random geometric pattern"
+msgstr "patrón geométrico aleatorio"
+
+#: ../../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.<br>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.<br> 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"
@@ -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 "<span %1$s>%2$d people</span> like this."
msgid_plural "<span %1$s>%2$d people</span> like this."
msgstr[0] "a <span %1$s>%2$d personas</span> le gusta esto."
msgstr[1] "A <span %1$s>%2$d personas</span> les gusta esto."
-#: ../../include/conversation.php:1159
+#: ../../include/conversation.php:1195
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgid_plural "<span %1$s>%2$d people</span> don't like this."
msgstr[0] "a <span %1$s>%2$d personas</span> no les gusta esto."
msgstr[1] "A <span %1$s>%2$d personas</span> 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:145
-msgid "Create an account"
-msgstr "Crear una cuenta"
-
-#: ../../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:98
+msgid "Network Activity"
+msgstr "Actividad de la red"
-#: ../../include/nav.php:172
-msgid "View your network/grid"
-msgstr "Ver su red"
+#: ../../include/nav.php:100
+msgid "Mark all activity notifications seen"
+msgstr "Marcar como vistas todas las notificaciones de actividad"
-#: ../../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:141
+msgid "Your profile page"
+msgstr "Su página del perfil"
-#: ../../include/nav.php:203
-msgid "New files shared with me"
-msgstr "Nuevos ficheros compartidos conmigo"
+#: ../../include/nav.php:144
+msgid "Manage/Edit profiles"
+msgstr "Administrar/editar perfiles"
-#: ../../include/nav.php:208
-msgid "Public stream"
-msgstr "\"Stream\" público"
+#: ../../include/nav.php:146
+msgid "Edit your profile"
+msgstr "Editar su perfil"
-#: ../../include/nav.php:208
-msgid "Public stream activities"
-msgstr "Actividades del \"stream\" público"
+#: ../../include/nav.php:153 ../../include/nav.php:157
+msgid "Sign in"
+msgstr "Acceder"
-#: ../../include/nav.php:215
+#: ../../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:189
+msgid "Create an account"
+msgstr "Crear una cuenta"
+
+#: ../../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&nbsp;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 <a href=\"settings\"><strong>privacy settings</strong></a>, 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 <a href=\"settings\"><strong>ajustes de privacidad</strong></a> 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 <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Por favor, <a href=\"rmagic\">identifíquese con su \$Projectname ID</a> o <a href=\"register\">rregístrese como un nuevo \$Projectname member</a> 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.<br>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.<br> 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 <strong>may</strong> 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. <strong>Es posible</strong> 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";
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 @@
-<div class="mb-2 notif-item">
- <a href="{{$item_link}}"><img src="{{$item_image}}" class="menu-img-1">{{$item_text}} <span class="notif-when">{{$item_when}}</span></a>
+<div class="mb-4 notif-item">
+ {{if ! $item_seen}}
+ <span class="float-right badge badge-pill badge-success text-uppercase">{{$new}}</span>
+ {{/if}}
+ <a href="{{$item_link}}">
+ <img src="{{$item_image}}" class="menu-img-3">
+ <span class="{{if $item_seen}}text-muted{{/if}}">{{$item_text}}</span><br>
+ <span class="dropdown-sub-text">{{$item_when}}</span>
+ </a>
</div>