From 3ab8632d3bd82306b8b82f652da329af4fdd4333 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 27 May 2021 19:20:07 +0000 Subject: update mail widgets to not require include message and minor fixes --- view/tpl/mail_conv.tpl | 6 ++++-- view/tpl/message_side.tpl | 2 ++ view/tpl/msg-header.tpl | 5 +++-- view/tpl/prv_message.tpl | 3 +++ 4 files changed, 12 insertions(+), 4 deletions(-) (limited to 'view') diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index b0497fe99..adc7734ec 100644 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -24,9 +24,11 @@ diff --git a/view/tpl/msg-header.tpl b/view/tpl/msg-header.tpl index e8542b087..d49303453 100644 --- a/view/tpl/msg-header.tpl +++ b/view/tpl/msg-header.tpl @@ -1,3 +1,4 @@ +{{** @@ -73,9 +74,9 @@ function addmailtext(data) { var currentText = $("#prvmail-text").val(); $("#prvmail-text").val(currentText + data); - } + } - +**}} diff --git a/view/tpl/prv_message.tpl b/view/tpl/prv_message.tpl index b8c81539d..ea7de0b4c 100644 --- a/view/tpl/prv_message.tpl +++ b/view/tpl/prv_message.tpl @@ -1,3 +1,5 @@ +{{** + {{if $new}}
@@ -105,3 +107,4 @@
{{/if}} +**}} -- cgit v1.2.3 From 0718ac514d2421a96ab191f874a0cd8b120a5a78 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 28 May 2021 08:11:40 +0000 Subject: remove deprecated mail code --- view/tpl/channel.tpl | 4 ---- 1 file changed, 4 deletions(-) (limited to 'view') diff --git a/view/tpl/channel.tpl b/view/tpl/channel.tpl index 63e09ec05..0ff52831d 100644 --- a/view/tpl/channel.tpl +++ b/view/tpl/channel.tpl @@ -36,10 +36,6 @@
{{if !$channel.delegate}} -
{{if $channel.intros != 0}}{{/if}}{{$channel.intros|string_format:$intros_format}}{{if $channel.intros != 0}}{{/if}} -- cgit v1.2.3 From 69ef7cf1680cebed3512e918de30c09ac9ce0be4 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 28 May 2021 08:42:08 +0000 Subject: remove more mail leftovers --- view/js/main.js | 22 ++-------------------- view/js/mod_mail.js | 7 ------- 2 files changed, 2 insertions(+), 27 deletions(-) delete mode 100644 view/js/mod_mail.js (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 6c418b213..a20c82593 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1446,24 +1446,6 @@ function preview_post() { return true; } -function preview_mail() { - $("#mail-preview").val("1"); - $("#mail-preview-content").show(); - $.post( - "mail", - $("#prvmail-form").serialize(), - function(data) { - if(data.preview) { - $("#mail-preview-content").html(data.preview); - $("#mail-preview-content" + " a").click(function() { return false; }); - } - }, - "json" - ); - $("#mail-preview").val("0"); - return true; -} - function bin2hex(s) { // Converts the binary representation of data to hex // @@ -1817,7 +1799,7 @@ function sse_bs_notifications(e, replace, followup) { function sse_handleNotifications(obj, replace, followup) { - var primary_notifications = ['dm', 'home', 'intros', 'register', 'mail', 'notify', 'files']; + var primary_notifications = ['dm', 'home', 'intros', 'register', 'notify', 'files']; var secondary_notifications = ['network', 'forums', 'all_events', 'pubs']; var all_notifications = primary_notifications.concat(secondary_notifications); @@ -1951,7 +1933,7 @@ function sse_updateNotifications(type, mid) { } function sse_setNotificationsStatus() { - var primary_notifications = ['dm', 'home', 'intros', 'register', 'mail', 'notify', 'files']; + var primary_notifications = ['dm', 'home', 'intros', 'register', 'notify', 'files']; var secondary_notifications = ['network', 'forums', 'all_events', 'pubs']; var all_notifications = primary_notifications.concat(secondary_notifications); diff --git a/view/js/mod_mail.js b/view/js/mod_mail.js deleted file mode 100644 index 917e5414c..000000000 --- a/view/js/mod_mail.js +++ /dev/null @@ -1,7 +0,0 @@ -$(document).ready(function() { - $("#recip").name_autocomplete(baseurl + '/acl', 'm', false, function(data) { - $("#recip-complete").val(data.xid); - }); - $('#prvmail-text').bbco_autocomplete('bbcode'); - $("#prvmail-text").editor_autocomplete(baseurl+"/acl"); -}); -- cgit v1.2.3 From 19bb96121b852d9bb3eb879cd7fe903e77805c4a Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 28 May 2021 09:58:18 +0000 Subject: move mark notifications read code to mod notifications --- view/js/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index a20c82593..0897fbd21 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -537,7 +537,7 @@ function closeMenu(theID) { } function markRead(notifType) { - $.get('ping?f=&markRead='+notifType); + $.get('notifications?f=&markRead='+notifType); $('.' + notifType + '-button').fadeOut(function() { $("." + notifType + "-update").html('0'); $('#nav-' + notifType + '-menu').html(''); @@ -548,7 +548,7 @@ function markRead(notifType) { } function markItemRead(itemId) { - $.get('ping?f=&markItemRead='+itemId); + $.get('notifications?f=&markItemRead='+itemId); $('.unseen-wall-indicator-'+itemId).remove(); } -- cgit v1.2.3 From 5ae21d04b0184fef0df8c33c71445d71e76a77ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Budzi=C5=84ski?= Date: Mon, 31 May 2021 13:39:11 +0200 Subject: New traslations: view/pl/invite* files + some fixes --- view/pl/hmessages.mo | Bin 304893 -> 305109 bytes view/pl/hmessages.po | 2551 ++++++++++++++++------------------- view/pl/hstrings.php | 150 +- view/pl/htconfig.tpl | 14 +- view/pl/invite.casual.subject.tpl | 1 + view/pl/invite.casual.tpl | 16 + view/pl/invite.formal.subject.tpl | 1 + view/pl/invite.formal.tpl | 32 + view/pl/invite.material.subject.tpl | 1 + view/pl/invite.material.tpl | 1 + 10 files changed, 1266 insertions(+), 1501 deletions(-) create mode 100644 view/pl/invite.casual.subject.tpl create mode 100644 view/pl/invite.casual.tpl create mode 100644 view/pl/invite.formal.subject.tpl create mode 100644 view/pl/invite.formal.tpl create mode 100644 view/pl/invite.material.subject.tpl create mode 100644 view/pl/invite.material.tpl (limited to 'view') diff --git a/view/pl/hmessages.mo b/view/pl/hmessages.mo index e5ec6d689..64db4c71c 100644 Binary files a/view/pl/hmessages.mo and b/view/pl/hmessages.mo differ diff --git a/view/pl/hmessages.po b/view/pl/hmessages.po index a0e293e0c..0fb80a1c6 100644 --- a/view/pl/hmessages.po +++ b/view/pl/hmessages.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 5.7\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-05-23 21:08+0200\n" -"PO-Revision-Date: 2021-05-26 16:02+0200\n" +"PO-Revision-Date: 2021-05-31 13:29+0200\n" "Last-Translator: Andrzej Budziński \n" "Language-Team: \n" "Language: pl\n" @@ -64,7 +64,7 @@ msgstr "Może publikować na stronie mojego kanału (ścianie)" #: ../../Zotlabs/Access/Permissions.php:67 msgid "Can comment on or like my posts" -msgstr "Może komentować lub polubić moje wpisy" +msgstr "Może komentować lub oceniać moje wpisy" #: ../../Zotlabs/Access/Permissions.php:68 msgid "Can send me private mail messages" @@ -77,8 +77,8 @@ msgstr "Może lubić/nie lubić profile i rzeczy w profilach" #: ../../Zotlabs/Access/Permissions.php:70 msgid "Can forward to all my channel connections via ! mentions in posts" msgstr "" -"Może przekazywać informacje do wszystkich moich połączeń kanałowych za " -"pośrednictwem !wzmianki w wpisach" +"Może przekazywać informacje do wszystkich moich połączeń kanałowych za pośrednictwem !" +"wzmianki w wpisach" #: ../../Zotlabs/Access/Permissions.php:71 msgid "Can chat with me" @@ -174,19 +174,16 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Group.php:15 #: ../../Zotlabs/Module/Group.php:31 ../../Zotlabs/Module/Appman.php:87 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Moderate.php:15 -#: ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/New_channel.php:105 ../../Zotlabs/Module/New_channel.php:130 #: ../../Zotlabs/Module/Filestorage.php:20 ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:96 -#: ../../Zotlabs/Module/Filestorage.php:119 +#: ../../Zotlabs/Module/Filestorage.php:96 ../../Zotlabs/Module/Filestorage.php:119 #: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 ../../Zotlabs/Module/Wiki.php:59 #: ../../Zotlabs/Module/Wiki.php:284 ../../Zotlabs/Module/Wiki.php:427 #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 #: ../../Zotlabs/Module/Locs.php:100 ../../Zotlabs/Module/Connedit.php:397 -#: ../../Zotlabs/Module/Profile_photo.php:338 -#: ../../Zotlabs/Module/Profile_photo.php:351 +#: ../../Zotlabs/Module/Profile_photo.php:338 ../../Zotlabs/Module/Profile_photo.php:351 #: ../../Zotlabs/Module/Sharedwithme.php:19 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/Item.php:506 ../../Zotlabs/Module/Item.php:525 @@ -202,18 +199,16 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Block.php:24 #: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Common.php:38 #: ../../Zotlabs/Module/Editwebpage.php:68 ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Profile.php:99 -#: ../../Zotlabs/Module/Profile.php:114 ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 -#: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Suggest.php:32 -#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Articles.php:89 -#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Mitem.php:129 -#: ../../Zotlabs/Module/Mood.php:126 ../../Zotlabs/Module/Register.php:200 -#: ../../Zotlabs/Module/Channel_calendar.php:232 +#: ../../Zotlabs/Module/Editwebpage.php:107 ../../Zotlabs/Module/Editwebpage.php:121 +#: ../../Zotlabs/Module/Profile.php:99 ../../Zotlabs/Module/Profile.php:114 +#: ../../Zotlabs/Module/Article_edit.php:51 ../../Zotlabs/Module/Thing.php:282 +#: ../../Zotlabs/Module/Thing.php:302 ../../Zotlabs/Module/Thing.php:343 +#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Setup.php:208 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Mood.php:126 +#: ../../Zotlabs/Module/Register.php:200 ../../Zotlabs/Module/Channel_calendar.php:232 #: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Cover_photo.php:341 +#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Cover_photo.php:341 #: ../../Zotlabs/Module/Cover_photo.php:354 ../../Zotlabs/Module/Menu.php:130 #: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Sources.php:80 #: ../../Zotlabs/Module/Poke.php:157 ../../Zotlabs/Module/Network.php:19 @@ -221,9 +216,8 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Settings.php:59 #: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Web/WebServer.php:116 #: ../../Zotlabs/Lib/Chatroom.php:135 ../../include/photos.php:27 -#: ../../include/attach.php:156 ../../include/attach.php:205 -#: ../../include/attach.php:278 ../../include/attach.php:329 -#: ../../include/attach.php:424 ../../include/attach.php:438 +#: ../../include/attach.php:156 ../../include/attach.php:205 ../../include/attach.php:278 +#: ../../include/attach.php:329 ../../include/attach.php:424 ../../include/attach.php:438 #: ../../include/attach.php:445 ../../include/attach.php:527 #: ../../include/attach.php:1091 ../../include/attach.php:1164 #: ../../include/attach.php:1327 ../../include/items.php:4088 @@ -341,13 +335,10 @@ msgstr "Układ systemowy" #: ../../Zotlabs/Module/Editpost.php:86 ../../Zotlabs/Module/Affinity.php:87 #: ../../Zotlabs/Module/Pconfig.php:116 ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Security.php:120 -#: ../../Zotlabs/Module/Admin/Accounts.php:309 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Accounts.php:309 ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Channels.php:147 ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Account_edit.php:73 -#: ../../Zotlabs/Module/Admin/Addons.php:442 -#: ../../Zotlabs/Module/Admin/Site.php:412 +#: ../../Zotlabs/Module/Admin/Addons.php:442 ../../Zotlabs/Module/Admin/Site.php:412 #: ../../Zotlabs/Module/Admin/Profs.php:178 ../../Zotlabs/Module/Thing.php:328 #: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Setup.php:306 @@ -367,13 +358,12 @@ msgstr "Układ systemowy" #: ../../Zotlabs/Module/Settings/Directory.php:42 #: ../../Zotlabs/Module/Settings/Channel_home.php:91 #: ../../Zotlabs/Module/Settings/Network.php:62 -#: ../../Zotlabs/Module/Settings/Conversation.php:49 -#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Sources.php:125 -#: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Module/Poke.php:217 -#: ../../Zotlabs/Storage/Browser.php:382 ../../Zotlabs/Lib/ThreadItem.php:827 -#: ../../Zotlabs/Widget/Wiki_pages.php:42 ../../Zotlabs/Widget/Wiki_pages.php:99 -#: ../../Zotlabs/Widget/Eventstools.php:16 ../../include/js_strings.php:22 -#: ../../extend/addon/hubzilla-addons/irc/irc.php:45 +#: ../../Zotlabs/Module/Settings/Conversation.php:49 ../../Zotlabs/Module/Invite.php:550 +#: ../../Zotlabs/Module/Sources.php:125 ../../Zotlabs/Module/Sources.php:162 +#: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Lib/ThreadItem.php:827 ../../Zotlabs/Widget/Wiki_pages.php:42 +#: ../../Zotlabs/Widget/Wiki_pages.php:99 ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../include/js_strings.php:22 ../../extend/addon/hubzilla-addons/irc/irc.php:45 #: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:95 #: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:57 #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:95 @@ -452,8 +442,7 @@ msgstr "z terminala." #: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Group.php:99 #: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Subthread.php:89 #: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Web/WebServer.php:115 -#: ../../include/items.php:441 -#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:75 +#: ../../include/items.php:441 ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:75 #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:119 #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:109 msgid "Permission denied" @@ -575,8 +564,7 @@ msgstr "Czy zezwalasz aplikacji %s na dostęp do danych Twojego kanału?" msgid "Allow" msgstr "Zezwól" -#: ../../Zotlabs/Module/Authorize.php:33 -#: ../../Zotlabs/Module/Admin/Accounts.php:319 +#: ../../Zotlabs/Module/Authorize.php:33 ../../Zotlabs/Module/Admin/Accounts.php:319 msgid "Deny" msgstr "Zabroń" @@ -709,14 +697,12 @@ msgstr "Kalendarze CalDAV" #: ../../Zotlabs/Module/Connedit.php:661 ../../Zotlabs/Module/Connedit.php:933 #: ../../Zotlabs/Module/Editlayout.php:138 ../../Zotlabs/Module/Editblock.php:139 #: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Connections.php:329 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Admin/Accounts.php:320 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Thing.php:269 -#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Lib/Apps.php:558 -#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../include/conversation.php:730 -#: ../../include/conversation.php:777 +#: ../../Zotlabs/Module/Admin/Channels.php:149 ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Thing.php:269 ../../Zotlabs/Storage/Browser.php:384 +#: ../../Zotlabs/Lib/Apps.php:558 ../../Zotlabs/Lib/ThreadItem.php:171 +#: ../../include/conversation.php:730 ../../include/conversation.php:777 msgid "Delete" msgstr "Usuń" @@ -731,14 +717,13 @@ msgstr "Usuń wszystko" #: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:367 #: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profile_photo.php:507 -#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Editblock.php:141 -#: ../../Zotlabs/Module/Editpost.php:111 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Article_edit.php:131 -#: ../../Zotlabs/Module/Admin/Addons.php:427 -#: ../../Zotlabs/Module/Cover_photo.php:428 ../../Zotlabs/Storage/Browser.php:383 -#: ../../include/conversation.php:1460 ../../include/conversation.php:1515 +#: ../../Zotlabs/Module/Profile_photo.php:507 ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Editpost.php:111 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Article_edit.php:131 +#: ../../Zotlabs/Module/Admin/Addons.php:427 ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Storage/Browser.php:383 ../../include/conversation.php:1460 +#: ../../include/conversation.php:1515 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:209 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:258 msgid "Cancel" @@ -757,8 +742,7 @@ msgstr "Utwórz" #: ../../Zotlabs/Module/Cdav.php:1061 msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "" -"Przepraszamy! Edycja powtarzających się wydarzeń nie została jeszcze " -"zaimplementowana." +"Przepraszamy! Edycja powtarzających się wydarzeń nie została jeszcze zaimplementowana." #: ../../Zotlabs/Module/Cdav.php:1071 ../../Zotlabs/Storage/Browser.php:293 #: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 @@ -775,9 +759,8 @@ msgstr "Kategorie" #: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 #: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 #: ../../Zotlabs/Module/Sharedwithme.php:106 ../../Zotlabs/Module/Chat.php:257 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Storage/Browser.php:377 ../../Zotlabs/Lib/NativeWikiPage.php:576 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../Zotlabs/Module/Admin/Channels.php:159 ../../Zotlabs/Storage/Browser.php:377 +#: ../../Zotlabs/Lib/NativeWikiPage.php:576 ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:172 msgid "Name" msgstr "Nazwa" @@ -798,8 +781,7 @@ msgid "Phone" msgstr "Numer telefonu" #: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Profiles.php:789 -#: ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Connedit.php:920 ../../Zotlabs/Module/Admin/Accounts.php:316 #: ../../Zotlabs/Module/Admin/Accounts.php:330 ../../include/network.php:1768 #: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:71 #: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:56 @@ -820,8 +802,7 @@ msgstr "Strona internetowa" #: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Profiles.php:504 #: ../../Zotlabs/Module/Profiles.php:792 ../../Zotlabs/Module/Locs.php:129 -#: ../../Zotlabs/Module/Connedit.php:923 -#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Admin/Channels.php:160 msgid "Address" msgstr "Adres" @@ -909,8 +890,8 @@ msgstr "Proszę się zalogować, aby kontynuować." #: ../../Zotlabs/Module/Api.php:97 msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +"Do you want to authorize this application to access your posts and contacts, and/or " +"create new posts for you?" msgstr "" "Czy chcesz zezwolić tej aplikacji na dostęp do Twoich wpisów i kontaktów albo " "tworzenie dla Ciebie nowych wpisów ?" @@ -919,13 +900,12 @@ msgstr "" #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Import.php:636 ../../Zotlabs/Module/Import.php:640 #: ../../Zotlabs/Module/Import.php:641 ../../Zotlabs/Module/Defperms.php:198 -#: ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Module/Wiki.php:226 -#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 -#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Admin/Site.php:321 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Filestorage.php:203 ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Wiki.php:226 ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Connedit.php:404 ../../Zotlabs/Module/Photos.php:673 +#: ../../Zotlabs/Module/Admin/Site.php:321 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:512 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Settings/Channel.php:311 ../../Zotlabs/Module/Menu.php:163 #: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Sources.php:124 @@ -993,14 +973,13 @@ msgstr "Tak" #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Import.php:636 ../../Zotlabs/Module/Import.php:640 #: ../../Zotlabs/Module/Import.php:641 ../../Zotlabs/Module/Defperms.php:198 -#: ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Module/Wiki.php:226 -#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 -#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Photos.php:673 -#: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Mitem.php:176 -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 -#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:512 -#: ../../Zotlabs/Module/Settings/Display.php:88 +#: ../../Zotlabs/Module/Filestorage.php:203 ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Wiki.php:226 ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Connedit.php:404 ../../Zotlabs/Module/Connedit.php:789 +#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Register.php:512 ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Settings/Channel.php:311 ../../Zotlabs/Module/Menu.php:163 #: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Sources.php:124 #: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Storage/Browser.php:310 @@ -1080,11 +1059,10 @@ msgid "or select an existing folder (doubleclick)" msgstr "lub wybierz istniejący folder (kliknij dwukrotnie)" #: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Cards.php:113 -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Articles.php:117 -#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 -#: ../../Zotlabs/Widget/Notes.php:23 ../../include/text.php:1145 -#: ../../include/text.php:1157 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Admin/Profs.php:114 +#: ../../Zotlabs/Module/Articles.php:117 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Widget/Notes.php:23 +#: ../../include/text.php:1145 ../../include/text.php:1157 #: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:116 msgid "Save" msgstr "Zapisz" @@ -1093,21 +1071,18 @@ msgstr "Zapisz" msgid "Save to Folder" msgstr "Zapisz do folderu" -#: ../../Zotlabs/Module/Events.php:113 -#: ../../Zotlabs/Module/Channel_calendar.php:62 +#: ../../Zotlabs/Module/Events.php:113 ../../Zotlabs/Module/Channel_calendar.php:62 msgid "Event can not end before it has started." msgstr "Wydarzenie nie może zakończyć się przed rozpoczęciem." #: ../../Zotlabs/Module/Events.php:115 ../../Zotlabs/Module/Events.php:124 -#: ../../Zotlabs/Module/Events.php:146 -#: ../../Zotlabs/Module/Channel_calendar.php:64 +#: ../../Zotlabs/Module/Events.php:146 ../../Zotlabs/Module/Channel_calendar.php:64 #: ../../Zotlabs/Module/Channel_calendar.php:72 #: ../../Zotlabs/Module/Channel_calendar.php:87 msgid "Unable to generate preview." msgstr "Nie można wygenerować podglądu." -#: ../../Zotlabs/Module/Events.php:122 -#: ../../Zotlabs/Module/Channel_calendar.php:70 +#: ../../Zotlabs/Module/Events.php:122 ../../Zotlabs/Module/Channel_calendar.php:70 msgid "Event title and start time are required." msgstr "Wymaga się wprowadzenia tytułu wydarzenia i godziny rozpoczęcia." @@ -1118,8 +1093,7 @@ msgid "Event not found." msgstr "Nie znaleziono wydarzenia." #: ../../Zotlabs/Module/Events.php:266 ../../Zotlabs/Module/Like.php:441 -#: ../../Zotlabs/Module/Tagger.php:75 -#: ../../Zotlabs/Module/Channel_calendar.php:221 +#: ../../Zotlabs/Module/Tagger.php:75 ../../Zotlabs/Module/Channel_calendar.php:221 #: ../../include/conversation.php:132 ../../include/text.php:2257 #: ../../include/event.php:1259 msgid "event" @@ -1175,11 +1149,11 @@ msgstr "Dostosuj do strefy czasowej widza" #: ../../Zotlabs/Module/Events.php:479 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +"Important for events that happen in a particular place. Not practical for global " +"holidays." msgstr "" -"Ważne dla wydarzeń, które mają miejsce w określonym miejscu. Niepraktyczne na " -"globalne święta." +"Ważne dla wydarzeń, które mają miejsce w określonym miejscu. Niepraktyczne na globalne " +"święta." #: ../../Zotlabs/Module/Events.php:481 msgid "Edit Description" @@ -1209,13 +1183,11 @@ msgstr "Zaawansowane opcje" msgid "l, F j" msgstr "l, F j" -#: ../../Zotlabs/Module/Events.php:641 -#: ../../Zotlabs/Module/Channel_calendar.php:370 +#: ../../Zotlabs/Module/Events.php:641 ../../Zotlabs/Module/Channel_calendar.php:370 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: ../../Zotlabs/Module/Events.php:643 -#: ../../Zotlabs/Module/Channel_calendar.php:372 +#: ../../Zotlabs/Module/Events.php:643 ../../Zotlabs/Module/Channel_calendar.php:372 msgid "Delete event" msgstr "Usuń wydarzenie" @@ -1223,8 +1195,7 @@ msgstr "Usuń wydarzenie" msgid "Link to Source" msgstr "Link do źródła" -#: ../../Zotlabs/Module/Events.php:677 -#: ../../Zotlabs/Module/Channel_calendar.php:406 +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Channel_calendar.php:406 msgid "calendar" msgstr "kalendarz" @@ -1251,8 +1222,7 @@ msgstr "Widok" msgid "Event removed" msgstr "Wydarzenie usunięte" -#: ../../Zotlabs/Module/Events.php:742 -#: ../../Zotlabs/Module/Channel_calendar.php:493 +#: ../../Zotlabs/Module/Events.php:742 ../../Zotlabs/Module/Channel_calendar.php:493 msgid "Failed to remove event" msgstr "Nie udało się usunąć wydarzenia" @@ -1355,10 +1325,8 @@ msgstr "Strony internetowe" #: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 #: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editblock.php:114 ../../Zotlabs/Module/Connections.php:321 -#: ../../Zotlabs/Module/Connections.php:363 -#: ../../Zotlabs/Module/Connections.php:383 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Article_edit.php:98 +#: ../../Zotlabs/Module/Connections.php:363 ../../Zotlabs/Module/Connections.php:383 +#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Article_edit.php:98 #: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Thing.php:268 #: ../../Zotlabs/Module/Menu.php:176 ../../Zotlabs/Lib/Apps.php:557 #: ../../Zotlabs/Lib/ThreadItem.php:149 ../../Zotlabs/Widget/Cdav.php:138 @@ -1456,11 +1424,11 @@ msgstr "Partner romantyczny" #: ../../Zotlabs/Module/Profiles.php:469 ../../Zotlabs/Module/Profiles.php:774 msgid "Likes" -msgstr "Polubienia" +msgstr "Oceny pozytywne" #: ../../Zotlabs/Module/Profiles.php:473 ../../Zotlabs/Module/Profiles.php:775 msgid "Dislikes" -msgstr "Niepolubienia" +msgstr "Oceny negatywne" #: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:782 msgid "Work/Employment" @@ -1741,13 +1709,13 @@ msgstr "Importuj kanał" #: ../../Zotlabs/Module/Import.php:629 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." +"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 "" -"Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera " -"(portalu).Możesz pobrać tożsamość kanału ze starego serwera (portalu) przez " -"sieć lub dostarczyć plik eksportu." +"Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera (portalu)." +"Możesz pobrać tożsamość kanału ze starego serwera (portalu) przez sieć lub dostarczyć " +"plik eksportu." #: ../../Zotlabs/Module/Import.php:630 ../../Zotlabs/Module/Import_items.php:127 msgid "File to Upload" @@ -1772,20 +1740,19 @@ msgstr "Twoje stare hasło logowania" #: ../../Zotlabs/Module/Import.php:636 msgid "Import a few months of posts if possible (limited by available memory" msgstr "" -"Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną " -"pamięcią)" +"Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną pamięcią)" #: ../../Zotlabs/Module/Import.php:638 msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +"For either option, please choose whether to make this hub your new primary address, or " +"whether your old location should continue this role. You will be able to post from " +"either location, but only one can be marked as the primary location for files, photos, " +"and media." msgstr "" -"W obu przypadkach wybierz, czy chcesz ustawić ten portal jako nowy adres " -"podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz " -"mógł/mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być " -"oznaczona jako główna lokalizacja plików, zdjęć i multimediów." +"W obu przypadkach wybierz, czy chcesz ustawić ten portal jako nowy adres podstawowy, " +"czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz mógł/mogła publikować " +"z dowolnej lokalizacji, ale tylko jedna z nich może być oznaczona jako główna " +"lokalizacja plików, zdjęć i multimediów." #: ../../Zotlabs/Module/Import.php:640 msgid "Make this hub my primary location" @@ -1801,23 +1768,23 @@ msgstr "Użyj tego pseudonimu kanału zamiast podanego" #: ../../Zotlabs/Module/Import.php:642 msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." +"Leave blank to keep your existing channel nickname. You will be randomly assigned a " +"similar nickname if either name is already allocated on this site." msgstr "" -"Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo " -"podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym portalu." +"Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny " +"pseudonim, jeśli któryś z nich jest już przydzielony na tym portalu." #: ../../Zotlabs/Module/Import.php:644 msgid "" -"This process may take several minutes to complete. Please submit the form only " -"once and leave this page open until finished." +"This process may take several minutes to complete. Please submit the form only once " +"and leave this page open until finished." msgstr "" -"Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę " -"stronę otwartą do zakończenia procedury." +"Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę stronę " +"otwartą do zakończenia procedury." #: ../../Zotlabs/Module/Like.php:106 msgid "Like/Dislike" -msgstr "Polub/Dezaprobuj" +msgstr "Oceń pozytywnie/negatywnie" #: ../../Zotlabs/Module/Like.php:112 msgid "This action is restricted to members." @@ -1825,11 +1792,11 @@ msgstr "Ta akcja jest ograniczona do członków." #: ../../Zotlabs/Module/Like.php:113 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -"Aby kontynuować, zaloguj się za pomocą ID $Projectname " -"lub zarejestruj się jako nowy członek $Projectname." +"Aby kontynuować, zaloguj się za pomocą ID $Projectname lub zarejestruj się jako nowy członek $Projectname." #: ../../Zotlabs/Module/Like.php:166 ../../Zotlabs/Module/Like.php:192 #: ../../Zotlabs/Module/Like.php:230 @@ -1873,14 +1840,14 @@ msgstr "stan" #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2138 #, php-format msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s polubił %3$s %2$s" +msgstr "%1$s ocenił pozytywnie %3$s %2$s" #: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 #: ../../include/conversation.php:177 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s dezaprobował %3$s %2$s" +msgstr "%1$s ocenił negatywnie %3$s %2$s" #: ../../Zotlabs/Module/Like.php:475 #, php-format @@ -1927,8 +1894,7 @@ msgstr "Dziękujemy." msgid "Could not access contact record." msgstr "Brak dostępu do rekordu kontaktu." -#: ../../Zotlabs/Module/Defperms.php:112 -#: ../../Zotlabs/Module/Settings/Channel.php:267 +#: ../../Zotlabs/Module/Defperms.php:112 ../../Zotlabs/Module/Settings/Channel.php:267 #: ../../extend/addon/hubzilla-addons/msgfooter/msgfooter.php:54 #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:116 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:82 @@ -1956,11 +1922,9 @@ msgstr "Domyślne uprawnienia połączenia" msgid "Apply these permissions automatically" msgstr "Zastosuj te uprawnienia automatycznie" -#: ../../Zotlabs/Module/Defperms.php:256 -#: ../../Zotlabs/Module/Settings/Channel.php:472 +#: ../../Zotlabs/Module/Defperms.php:256 ../../Zotlabs/Module/Settings/Channel.php:472 msgid "If enabled, connection requests will be approved without your interaction" -msgstr "" -"Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej interakcji" +msgstr "Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej interakcji" #: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 msgid "Permission role" @@ -1977,11 +1941,9 @@ msgid "Add permission role" msgstr "Dodaj rolę uprawnień" #: ../../Zotlabs/Module/Defperms.php:262 ../../Zotlabs/Module/Connedit.php:876 -msgid "" -"The permissions indicated on this page will be applied to all new connections." +msgid "The permissions indicated on this page will be applied to all new connections." msgstr "" -"Uprawnienia wskazane na tej stronie zostaną zastosowane do wszystkich nowych " -"połączeń." +"Uprawnienia wskazane na tej stronie zostaną zastosowane do wszystkich nowych połączeń." #: ../../Zotlabs/Module/Defperms.php:263 msgid "Automatic approval settings" @@ -2004,11 +1966,11 @@ msgstr "Uprawnienia indywidualne" #: ../../Zotlabs/Module/Defperms.php:271 msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." +"Some individual permissions may have been preset or locked based on your channel type " +"and privacy settings." msgstr "" -"Niektóre indywidualne uprawnienia mogły zostać wstępnie ustawione lub " -"zablokowane w zależności od typu kanału i ustawień prywatności." +"Niektóre indywidualne uprawnienia mogły zostać wstępnie ustawione lub zablokowane w " +"zależności od typu kanału i ustawień prywatności." #: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 #: ../../Zotlabs/Module/Editlayout.php:128 @@ -2147,10 +2109,8 @@ msgstr "Kliknij kanał, aby przełączyć członkostwo" #: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" -"Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." +"Channel removals are not allowed within 48 hours of changing the account password." +msgstr "Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." #: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" @@ -2174,8 +2134,7 @@ msgstr "Ta akcja jest bezpowrotna i nie można jej cofnąć!" msgid "Please enter your password for verification:" msgstr "Wprowadź hasło do weryfikacji:" -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings/Channel.php:596 msgid "Remove Channel" msgstr "Usuń kanał" @@ -2233,11 +2192,9 @@ msgstr "Lokalizacja (URL) do zakupu aplikacji" #: ../../Zotlabs/Module/Changeaddr.php:35 msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." +"Channel name changes are not allowed within 48 hours of changing the account password." msgstr "" -"Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do " -"konta." +"Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do konta." #: ../../Zotlabs/Module/Changeaddr.php:46 ../../Zotlabs/Module/Register.php:100 #: ../../include/channel.php:226 ../../include/channel.php:706 @@ -2247,8 +2204,7 @@ msgstr "Ten pseudonim jest już zarezerwowany. Proszę wybrać inny." #: ../../Zotlabs/Module/Changeaddr.php:51 ../../Zotlabs/Module/Register.php:105 #: ../../include/channel.php:231 ../../include/channel.php:711 msgid "Nickname has unsupported characters or is already being used on this site." -msgstr "" -"Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym portalu." +msgstr "Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym portalu." #: ../../Zotlabs/Module/Changeaddr.php:77 msgid "Change channel nickname/address" @@ -2302,8 +2258,7 @@ msgstr "Klucz konsumenta" #: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 msgid "Automatically generated - change if desired. Max length 20" -msgstr "" -"Wygenerowane automatycznie - w razie potrzeby zmień. Maksymalna długość 20" +msgstr "Wygenerowane automatycznie - w razie potrzeby zmień. Maksymalna długość 20" #: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 @@ -2319,11 +2274,9 @@ msgstr "Przekierowanie" #: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 #: ../../Zotlabs/Module/Oauth2.php:148 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +msgid "Redirect URI - leave blank unless your application specifically requires this" msgstr "" -"Identyfikator URI przekierowania - pozostaw puste, chyba że aplikacja tego " -"wymaga" +"Identyfikator URI przekierowania - pozostaw puste, chyba że aplikacja tego wymaga" #: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 msgid "Icon url" @@ -2354,8 +2307,7 @@ msgstr "Brak nazwy" msgid "Remove authorization" msgstr "Usuń autoryzację" -#: ../../Zotlabs/Module/Email_resend.php:12 -#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 ../../Zotlabs/Module/Email_validation.php:24 msgid "Token verification failed." msgstr "Weryfikacja tokena nie powiodła się." @@ -2460,8 +2412,7 @@ msgstr "Importuj elementy" #: ../../Zotlabs/Module/Import_items.php:126 msgid "Use this form to import existing posts and content from an export file." msgstr "" -"Użyj tego formularza, aby zaimportować istniejące wpisy i treść z pliku " -"eksportu." +"Użyj tego formularza, aby zaimportować istniejące wpisy i treść z pliku eksportu." #: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118 msgid "Continue" @@ -2488,8 +2439,8 @@ msgid "" "This channel may require additional steps or acknowledgement of the following " "conditions prior to connecting:" msgstr "" -"Ten kanał, przed podłączeniem, może wymagać dodatkowych kroków lub " -"potwierdzenia następujących warunków:" +"Ten kanał, przed podłączeniem, może wymagać dodatkowych kroków lub potwierdzenia " +"następujących warunków:" #: ../../Zotlabs/Module/Connect.php:105 msgid "Potential connections will then see the following text before proceeding:" @@ -2497,8 +2448,8 @@ msgstr "Potencjalne połączenia zobaczą następujący tekst przed kontynuowani #: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 msgid "" -"By continuing, I certify that I have complied with any instructions provided on " -"this page." +"By continuing, I certify that I have complied with any instructions provided on this " +"page." msgstr "" "Kontynuując, oświadczam, że postępowałem zgodnie z instrukcjami podanymi na tej " "stronie." @@ -2522,18 +2473,15 @@ msgstr "Zalecane jest podania prawdziwego imienia i nazwiska lub nazwy." #: ../../Zotlabs/Module/New_channel.php:160 msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group" -"\"" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" msgstr "" -"Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa " -"lotnicza\"" +"Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa lotnicza\"" #: ../../Zotlabs/Module/New_channel.php:165 -msgid "" -"This will be used to create a unique network address (like an email address)." +msgid "This will be used to create a unique network address (like an email address)." msgstr "" -"Zostanie to zastosowane do utworzenia unikalnego adresu sieciowego (podobnego " -"do adresu e-mail)." +"Zostanie to zastosowane do utworzenia unikalnego adresu sieciowego (podobnego do " +"adresu e-mail)." #: ../../Zotlabs/Module/New_channel.php:167 msgid "Allowed characters are a-z 0-9, - and _" @@ -2547,8 +2495,7 @@ msgstr "Nazwa kanału" msgid "Choose a short nickname" msgstr "Wybierz krótki pseudonim" -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:537 +#: ../../Zotlabs/Module/New_channel.php:178 ../../Zotlabs/Module/Settings/Channel.php:537 msgid "Channel role and privacy" msgstr "Rola kanału i prywatność" @@ -2557,8 +2504,8 @@ msgid "" "Select a channel permission role compatible with your usage needs and privacy " "requirements." msgstr "" -"Wybierz rolę uprawnień do kanału, zgodną z Twoimi potrzebami użytkowania i " -"wymaganiami dotyczącymi prywatności." +"Wybierz rolę uprawnień do kanału, zgodną z Twoimi potrzebami użytkowania i wymaganiami " +"dotyczącymi prywatności." #: ../../Zotlabs/Module/New_channel.php:178 msgid "Read more about channel permission roles" @@ -2570,19 +2517,17 @@ msgstr "Utwórz kanał" #: ../../Zotlabs/Module/New_channel.php:182 msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed, " -"and many other things." +"A channel is a unique network identity. It can represent a person (social network " +"profile), a forum (group), a business or celebrity page, a newsfeed, and many other " +"things." msgstr "" "Kanał to unikalna tożsamość sieciowa. Może reprezentować osobę (profil sieci " -"społecznościowej), forum (grupę), stronę biznesową lub celebrycką, kanał " -"informacyjny i wiele innych rzeczy." +"społecznościowej), forum (grupę), stronę biznesową lub celebrycką, kanał informacyjny " +"i wiele innych rzeczy." #: ../../Zotlabs/Module/New_channel.php:183 -msgid "" -"or import an existing channel from another location." -msgstr "" -"lub zaimportuj istniejący kanał z innej lokalizacji." +msgid "or import an existing channel from another location." +msgstr "lub zaimportuj istniejący kanał z innej lokalizacji." #: ../../Zotlabs/Module/New_channel.php:188 msgid "Validate" @@ -2606,18 +2551,15 @@ msgstr "Utwórz własną aplikację" #: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" -"Usunięcie konta nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." +"Account removals are not allowed within 48 hours of changing the account password." +msgstr "Usunięcie konta nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." #: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Usuń to konto" #: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the network. " +msgid "This account and all its channels will be completely removed from the network. " msgstr "To konto i wszystkie jego kanały zostaną całkowicie usunięte z sieci. " #: ../../Zotlabs/Module/Removeaccount.php:61 @@ -2631,16 +2573,15 @@ msgstr "Przestarzałe!" #: ../../Zotlabs/Module/Filestorage.php:29 ../../Zotlabs/Module/Display.php:42 #: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 -#: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Admin/Addons.php:260 ../../Zotlabs/Module/Thing.php:96 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:4011 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Admin/Addons.php:260 +#: ../../Zotlabs/Module/Thing.php:96 ../../Zotlabs/Module/Viewsrc.php:25 +#: ../../include/items.php:4011 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:284 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:285 msgid "Item not found." msgstr "Nie znaleziono elementu." -#: ../../Zotlabs/Module/Filestorage.php:109 -#: ../../Zotlabs/Module/Attach_edit.php:69 +#: ../../Zotlabs/Module/Filestorage.php:109 ../../Zotlabs/Module/Attach_edit.php:69 msgid "File not found." msgstr "Nie znaleziono pliku." @@ -2696,8 +2637,7 @@ msgstr "Pokaż w folderze udostępnionym kontaktów" #: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 #: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editblock.php:79 #: ../../Zotlabs/Module/Editblock.php:95 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 msgid "Item not found" msgstr "Nie znaleziono elementu" @@ -2726,28 +2666,28 @@ msgstr "Edytuj kartę" msgid "No connections." msgstr "Brak połączeń." -#: ../../Zotlabs/Module/Viewconnections.php:80 -#: ../../Zotlabs/Module/Connections.php:289 ../../include/text.php:1038 +#: ../../Zotlabs/Module/Viewconnections.php:80 ../../Zotlabs/Module/Connections.php:289 +#: ../../include/text.php:1038 msgid "Accepts" msgstr "Akceptacje" -#: ../../Zotlabs/Module/Viewconnections.php:83 -#: ../../Zotlabs/Module/Connections.php:292 ../../include/text.php:1041 +#: ../../Zotlabs/Module/Viewconnections.php:83 ../../Zotlabs/Module/Connections.php:292 +#: ../../include/text.php:1041 msgid "Comments" msgstr "Komentarze" -#: ../../Zotlabs/Module/Viewconnections.php:88 -#: ../../Zotlabs/Module/Connections.php:297 ../../include/text.php:1046 +#: ../../Zotlabs/Module/Viewconnections.php:88 ../../Zotlabs/Module/Connections.php:297 +#: ../../include/text.php:1046 msgid "Stream items" msgstr "Elementy strumienia" -#: ../../Zotlabs/Module/Viewconnections.php:93 -#: ../../Zotlabs/Module/Connections.php:302 ../../include/text.php:1051 +#: ../../Zotlabs/Module/Viewconnections.php:93 ../../Zotlabs/Module/Connections.php:302 +#: ../../include/text.php:1051 msgid "Wall posts" msgstr "Wpisy ścienne" -#: ../../Zotlabs/Module/Viewconnections.php:97 -#: ../../Zotlabs/Module/Connections.php:306 ../../include/text.php:1055 +#: ../../Zotlabs/Module/Viewconnections.php:97 ../../Zotlabs/Module/Connections.php:306 +#: ../../include/text.php:1055 msgid "Nothing" msgstr "Nic" @@ -2800,8 +2740,7 @@ msgstr "pozostaw puste, chyba że Twoja aplikacja wyraźnie tego wymaga" msgid "Connected OAuth2 Apps" msgstr "Aplikacje połączeń OAuth2" -#: ../../Zotlabs/Module/Wiki.php:35 -#: ../../extend/addon/hubzilla-addons/cart/cart.php:1410 +#: ../../Zotlabs/Module/Wiki.php:35 ../../extend/addon/hubzilla-addons/cart/cart.php:1410 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:51 msgid "Profile Unavailable." msgstr "Profil niedostępny." @@ -2814,8 +2753,7 @@ msgstr "Aplikacja Wiki" msgid "Provide a wiki for your channel" msgstr "Udostępnij wiki dla swojego kanału" -#: ../../Zotlabs/Module/Wiki.php:77 -#: ../../extend/addon/hubzilla-addons/cart/cart.php:1556 +#: ../../Zotlabs/Module/Wiki.php:77 ../../extend/addon/hubzilla-addons/cart/cart.php:1556 #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:478 #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:456 #: ../../extend/addon/hubzilla-addons/cart/myshop.php:37 @@ -2854,8 +2792,7 @@ msgstr "Rodzaj treści" #: ../../Zotlabs/Module/Wiki.php:216 ../../Zotlabs/Module/Wiki.php:370 #: ../../Zotlabs/Widget/Wiki_pages.php:38 ../../Zotlabs/Widget/Wiki_pages.php:95 -#: ../../include/text.php:2118 -#: ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:41 +#: ../../include/text.php:2118 ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:41 msgid "Markdown" msgstr "Markdown" @@ -3071,10 +3008,8 @@ msgstr "Wyszukiwanie lokalizacji nie powiodło się." #: ../../Zotlabs/Module/Locs.php:79 msgid "" -"Please select another location to become primary before removing the primary " -"location." -msgstr "" -"Przed usunięciem lokalizacji podstawowej wybierz inną lokalizację jako główną." +"Please select another location to become primary before removing the primary location." +msgstr "Przed usunięciem lokalizacji podstawowej wybierz inną lokalizację jako główną." #: ../../Zotlabs/Module/Locs.php:108 msgid "Syncing locations" @@ -3107,16 +3042,14 @@ msgstr "Poczekaj kilka minut między kolejnymi operacjami." #: ../../Zotlabs/Module/Locs.php:135 msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +"When possible, drop a location by logging into that website/hub and removing your " +"channel." msgstr "" -"Jeśli to możliwe, upuść lokalizację, logując się do tego portalu i usuwając " -"swój kanał." +"Jeśli to możliwe, upuść lokalizację, logując się do tego portalu i usuwając swój kanał." #: ../../Zotlabs/Module/Locs.php:136 msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "" -"Użyj tego formularza, aby usunąć lokalizację, jeśli portal już nie działa." +msgstr "Użyj tego formularza, aby usunąć lokalizację, jeśli portal już nie działa." #: ../../Zotlabs/Module/Chatsvc.php:131 msgid "Away" @@ -3205,13 +3138,11 @@ msgstr "Ostatnia aktywność" msgid "View recent posts and comments" msgstr "Wyświetl najnowsze wpisy i komentarze" -#: ../../Zotlabs/Module/Connedit.php:629 -#: ../../Zotlabs/Module/Admin/Accounts.php:322 +#: ../../Zotlabs/Module/Connedit.php:629 ../../Zotlabs/Module/Admin/Accounts.php:322 msgid "Unblock" msgstr "Odblokuj" -#: ../../Zotlabs/Module/Connedit.php:629 -#: ../../Zotlabs/Module/Admin/Accounts.php:321 +#: ../../Zotlabs/Module/Connedit.php:629 ../../Zotlabs/Module/Admin/Accounts.php:321 msgid "Block" msgstr "Zablokuj" @@ -3248,11 +3179,10 @@ msgid "Archive" msgstr "Archiwizuj" #: ../../Zotlabs/Module/Connedit.php:648 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgid "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -"Archiwizuj (lub przywróć) to połączenie - zaznacz kanał jako martwy, ale " -"zachowaj zawartość" +"Archiwizuj (lub przywróć) to połączenie - zaznacz kanał jako martwy, ale zachowaj " +"zawartość" #: ../../Zotlabs/Module/Connedit.php:649 msgid "This connection is archived!" @@ -3306,14 +3236,13 @@ msgstr "Ja" msgid "Family" msgstr "Rodzina" -#: ../../Zotlabs/Module/Connedit.php:718 -#: ../../Zotlabs/Module/Settings/Channel.php:71 +#: ../../Zotlabs/Module/Connedit.php:718 ../../Zotlabs/Module/Settings/Channel.php:71 #: ../../Zotlabs/Module/Settings/Channel.php:75 #: ../../Zotlabs/Module/Settings/Channel.php:76 #: ../../Zotlabs/Module/Settings/Channel.php:79 -#: ../../Zotlabs/Module/Settings/Channel.php:90 -#: ../../Zotlabs/Widget/Affinity.php:32 ../../include/channel.php:506 -#: ../../include/channel.php:509 ../../include/selectors.php:134 +#: ../../Zotlabs/Module/Settings/Channel.php:90 ../../Zotlabs/Widget/Affinity.php:32 +#: ../../include/channel.php:506 ../../include/channel.php:509 +#: ../../include/selectors.php:134 msgid "Friends" msgstr "Przyjaciele" @@ -3371,8 +3300,8 @@ msgid "" "This connection is unreachable from this location. Location independence is not " "supported by their network." msgstr "" -"To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji nie " -"jest obsługiwana przez ich sieć." +"To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji nie jest " +"obsługiwana przez ich sieć." #: ../../Zotlabs/Module/Connedit.php:860 ../../include/items.php:4618 #, php-format @@ -3423,11 +3352,10 @@ msgstr "Importuj tylko wpisy z tym tekstem" #: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 #: ../../Zotlabs/Module/Admin/Site.php:512 ../../Zotlabs/Module/Admin/Site.php:513 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import all " -"posts" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts" msgstr "" -"słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw puste, " -"aby zaimportować wszystkie wpisy" +"słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw puste, aby " +"zaimportować wszystkie wpisy" #: ../../Zotlabs/Module/Connedit.php:886 msgid "Do not import posts with this text" @@ -3444,11 +3372,11 @@ msgstr "Połączenie oczekujące na zatwierdzenie" #: ../../Zotlabs/Module/Connedit.php:898 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +"Please choose the profile you would like to display to %s when viewing your profile " +"securely." msgstr "" -"Wybierz profil, który chcesz wyświetlić dla %s, podczas bezpiecznego " -"przeglądania swojego profilu." +"Wybierz profil, który chcesz wyświetlić dla %s, podczas bezpiecznego przeglądania " +"swojego profilu." #: ../../Zotlabs/Module/Connedit.php:900 ../../Zotlabs/Module/Tokens.php:180 msgid "Their Settings" @@ -3458,26 +3386,24 @@ msgstr "Ich ustawienia" #: ../../Zotlabs/Module/Permcats.php:128 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +"\">privacy settings, which have higher priority than individual " +"settings. You can not change those settings here." msgstr "" -"Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, które mają wyższy " -"priorytet niż indywidualne ustawienia. Nie możesz tutaj " -"zmienić tych ustawień." +"Niektóre uprawnienia mogą być dziedziczone z ustawień " +"prywatności Twojego kanału, które mają wyższy priorytet niż indywidualne " +"ustawienia. Nie możesz tutaj zmienić tych ustawień." #: ../../Zotlabs/Module/Connedit.php:905 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have any " -"impact unless the inherited setting changes." +"\">privacy settings, which have higher priority than individual " +"settings. You can change those settings here but they wont have any impact unless the " +"inherited setting changes." msgstr "" -"Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, te które mają " -"wyższy priorytet niż indywidualne ustawienia. Możesz zmienić te ustawienia " -"tutaj, ale nie będą one miały żadnego wpływu, chyba że odziedziczone ustawienie " -"ulegnie zmianie." +"Niektóre uprawnienia mogą być dziedziczone z ustawień " +"prywatności Twojego kanału, te które mają wyższy priorytet niż " +"indywidualne ustawienia. Możesz zmienić te ustawienia tutaj, ale nie będą one miały " +"żadnego wpływu, chyba że odziedziczone ustawienie ulegnie zmianie." #: ../../Zotlabs/Module/Connedit.php:906 msgid "Last update:" @@ -3574,11 +3500,11 @@ msgstr "Twój identyfikator logowania to" #: ../../Zotlabs/Module/Regate.php:340 msgid "" -"After your account has been approved by our administrator you will be able to " -"login with your login ID and your provided password." +"After your account has been approved by our administrator you will be able to login " +"with your login ID and your provided password." msgstr "" -"Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować się " -"za pomocą swojego identyfikatora logowania i podanego hasła." +"Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować się za " +"pomocą swojego identyfikatora logowania i podanego hasła." #: ../../Zotlabs/Module/Regate.php:352 msgid "Registration request revoked" @@ -3616,19 +3542,16 @@ msgstr "Nieznany lub wygasły identyfikator" msgid "dId2 malformed" msgstr "źle sformułowany dId2" -#: ../../Zotlabs/Module/Profile_photo.php:93 -#: ../../Zotlabs/Module/Cover_photo.php:85 +#: ../../Zotlabs/Module/Profile_photo.php:93 ../../Zotlabs/Module/Cover_photo.php:85 msgid "Image uploaded but image cropping failed." msgstr "Obraz został przesłany, ale przycinanie obrazu nie powiodło się." -#: ../../Zotlabs/Module/Profile_photo.php:147 -#: ../../Zotlabs/Module/Profile_photo.php:284 +#: ../../Zotlabs/Module/Profile_photo.php:147 ../../Zotlabs/Module/Profile_photo.php:284 #: ../../include/photo/photo_driver.php:435 msgid "Profile Photos" msgstr "Zdjęcia profilowe" -#: ../../Zotlabs/Module/Profile_photo.php:166 -#: ../../Zotlabs/Module/Cover_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:166 ../../Zotlabs/Module/Cover_photo.php:212 msgid "Image resize failed." msgstr "Zmiana rozmiaru obrazu nie powiodła się." @@ -3638,54 +3561,48 @@ msgid "" "Shift-reload the page or clear browser cache if the new photo does not display " "immediately." msgstr "" -"Przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie " -"nie zostanie wyświetlone od razu." +"Przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie " +"zostanie wyświetlone od razu." -#: ../../Zotlabs/Module/Profile_photo.php:261 -#: ../../Zotlabs/Module/Cover_photo.php:241 ../../include/photos.php:196 +#: ../../Zotlabs/Module/Profile_photo.php:261 ../../Zotlabs/Module/Cover_photo.php:241 +#: ../../include/photos.php:196 msgid "Unable to process image" msgstr "Nie można przetworzyć obrazu" -#: ../../Zotlabs/Module/Profile_photo.php:296 -#: ../../Zotlabs/Module/Cover_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:296 ../../Zotlabs/Module/Cover_photo.php:265 msgid "Image upload failed." msgstr "Przesyłanie obrazu nie powiodło się." -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Cover_photo.php:282 +#: ../../Zotlabs/Module/Profile_photo.php:315 ../../Zotlabs/Module/Cover_photo.php:282 msgid "Unable to process image." msgstr "Nie można przetworzyć obrazu." -#: ../../Zotlabs/Module/Profile_photo.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:431 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../Zotlabs/Module/Cover_photo.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:379 ../../Zotlabs/Module/Profile_photo.php:431 +#: ../../Zotlabs/Module/Cover_photo.php:367 ../../Zotlabs/Module/Cover_photo.php:382 msgid "Photo not available." msgstr "Zdjęcie nie jest dostępne." #: ../../Zotlabs/Module/Profile_photo.php:495 msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" +"Your default profile photo is visible to anybody on the internet. Profile photos for " +"alternate profiles will inherit the permissions of the profile" msgstr "" -"Twoje domyślne zdjęcie profilowe jest widoczne dla każdego w internecie. " -"Zdjęcia profilowe dla profili alternatywnych odziedziczą uprawnienia profilu" +"Twoje domyślne zdjęcie profilowe jest widoczne dla każdego w internecie. Zdjęcia " +"profilowe dla profili alternatywnych odziedziczą uprawnienia profilu" #: ../../Zotlabs/Module/Profile_photo.php:495 msgid "" -"Your profile photo is visible to anybody on the internet and may be distributed " -"to other websites." +"Your profile photo is visible to anybody on the internet and may be distributed to " +"other websites." msgstr "" "Twoje zdjęcie profilowe jest widoczne dla każdego w internecie i może być " "rozpowszechniane na innych stronach internetowych." -#: ../../Zotlabs/Module/Profile_photo.php:497 -#: ../../Zotlabs/Module/Cover_photo.php:420 +#: ../../Zotlabs/Module/Profile_photo.php:497 ../../Zotlabs/Module/Cover_photo.php:420 msgid "Upload File:" msgstr "Prześlij plik:" -#: ../../Zotlabs/Module/Profile_photo.php:498 -#: ../../Zotlabs/Module/Cover_photo.php:421 +#: ../../Zotlabs/Module/Profile_photo.php:498 ../../Zotlabs/Module/Cover_photo.php:421 msgid "Select a profile:" msgstr "Wybierz profil:" @@ -3702,10 +3619,10 @@ msgid "Use" msgstr "Użyj" #: ../../Zotlabs/Module/Profile_photo.php:500 ../../Zotlabs/Module/Photos.php:688 -#: ../../Zotlabs/Module/Cover_photo.php:423 -#: ../../Zotlabs/Module/Embedphotos.php:189 ../../Zotlabs/Storage/Browser.php:540 -#: ../../Zotlabs/Widget/Cdav.php:146 ../../Zotlabs/Widget/Cdav.php:182 -#: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 +#: ../../Zotlabs/Module/Cover_photo.php:423 ../../Zotlabs/Module/Embedphotos.php:189 +#: ../../Zotlabs/Storage/Browser.php:540 ../../Zotlabs/Widget/Cdav.php:146 +#: ../../Zotlabs/Widget/Cdav.php:182 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 msgid "Upload" msgstr "Prześlij" @@ -3716,30 +3633,24 @@ msgstr "Prześlij" msgid "Remove" msgstr "Usuń" -#: ../../Zotlabs/Module/Profile_photo.php:505 -#: ../../Zotlabs/Module/Profile_photo.php:506 -#: ../../Zotlabs/Module/Cover_photo.php:426 -#: ../../Zotlabs/Module/Cover_photo.php:427 +#: ../../Zotlabs/Module/Profile_photo.php:505 ../../Zotlabs/Module/Profile_photo.php:506 +#: ../../Zotlabs/Module/Cover_photo.php:426 ../../Zotlabs/Module/Cover_photo.php:427 msgid "Use a photo from your albums" msgstr "Użyj zdjęcia ze swoich albumów" -#: ../../Zotlabs/Module/Profile_photo.php:516 -#: ../../Zotlabs/Module/Cover_photo.php:438 +#: ../../Zotlabs/Module/Profile_photo.php:516 ../../Zotlabs/Module/Cover_photo.php:438 msgid "Select existing photo" msgstr "Wybierz istniejące zdjęcie" -#: ../../Zotlabs/Module/Profile_photo.php:535 -#: ../../Zotlabs/Module/Cover_photo.php:455 +#: ../../Zotlabs/Module/Profile_photo.php:535 ../../Zotlabs/Module/Cover_photo.php:455 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: ../../Zotlabs/Module/Profile_photo.php:536 -#: ../../Zotlabs/Module/Cover_photo.php:456 +#: ../../Zotlabs/Module/Profile_photo.php:536 ../../Zotlabs/Module/Cover_photo.php:456 msgid "Please adjust the image cropping for optimum viewing." msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalne wyświetlanie." -#: ../../Zotlabs/Module/Profile_photo.php:538 -#: ../../Zotlabs/Module/Cover_photo.php:458 +#: ../../Zotlabs/Module/Profile_photo.php:538 ../../Zotlabs/Module/Cover_photo.php:458 msgid "Done Editing" msgstr "Zakończono edycję" @@ -3837,7 +3748,7 @@ msgstr "Twój komentarz oczekuje na zatwierdzenie." #: ../../Zotlabs/Module/Item.php:1498 msgid "Unable to obtain post information from database." -msgstr "Nie można uzyskać z bazy danych informacji o tym poście." +msgstr "Nie można uzyskać z bazy danych informacji o tym wpisie." #: ../../Zotlabs/Module/Item.php:1505 #, php-format @@ -3881,18 +3792,18 @@ msgstr "Nie znaleziono strony." #: ../../Zotlabs/Module/Page.php:173 msgid "" "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor " -"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis " -"nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " -"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu " -"fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in " -"culpa qui officia deserunt mollit anim id est laborum." +"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud " +"exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure " +"dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. " +"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt " +"mollit anim id est laborum." msgstr "" "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." +"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." #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -3948,7 +3859,7 @@ msgstr "menu" #: ../../Zotlabs/Module/Impel.php:185 #, php-format msgid "%s element installed" -msgstr "Element %s zainstalowany" +msgstr "Element %s został zainstalowany" #: ../../Zotlabs/Module/Impel.php:188 #, php-format @@ -3961,17 +3872,15 @@ msgstr "Portale publiczne" #: ../../Zotlabs/Module/Pubsites.php:28 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +"The listed hubs allow public registration for the $Projectname network. All hubs in " +"the network are interlinked so membership on any of them conveys membership in the " +"network as a whole. Some hubs may require subscription or provide tiered service " +"plans. The hub itself may provide additional details." msgstr "" -"Wymienione portale umożliwiają publiczną rejestrację w sieci $Projectname. " -"Wszystkie portale w sieci są ze sobą połączone, więc członkostwo w " -"którymkolwiek z nich oznacza członkostwo w całej sieci. Niektóre portale mogą " -"wymagać subskrypcji lub oferować stopniowe plany usług. Dodatkową informację " -"można znaleźć na poszczególnych portalach." +"Wymienione portale umożliwiają publiczną rejestrację w sieci $Projectname. Wszystkie " +"portale w sieci są ze sobą połączone, więc członkostwo w którymkolwiek z nich oznacza " +"członkostwo w całej sieci. Niektóre portale mogą wymagać subskrypcji lub oferować " +"stopniowe plany usług. Dodatkową informację można znaleźć na poszczególnych portalach." #: ../../Zotlabs/Module/Pubsites.php:34 msgid "Hub URL" @@ -4005,7 +3914,7 @@ msgstr "Ocena" #: ../../Zotlabs/Module/Chat.php:29 ../../Zotlabs/Module/Channel.php:44 #: ../../Zotlabs/Module/Ochannel.php:32 msgid "You must be logged in to see this page." -msgstr "Musisz być zalogowany, aby zobaczyć tę stronę." +msgstr "Trzeba być zalogowanym, aby zobaczyć tę stronę." #: ../../Zotlabs/Module/Chat.php:100 msgid "Chatrooms App" @@ -4017,15 +3926,15 @@ msgstr "Dostęp do kontrolowanych czatów" #: ../../Zotlabs/Module/Chat.php:194 msgid "Room not found" -msgstr "Nie znaleziono pokoju" +msgstr "Nie znaleziono czatu" #: ../../Zotlabs/Module/Chat.php:210 msgid "Leave Room" -msgstr "Opuść pokój" +msgstr "Opuść czat" #: ../../Zotlabs/Module/Chat.php:211 msgid "Delete Room" -msgstr "Usuń pokój" +msgstr "Usuń czat" #: ../../Zotlabs/Module/Chat.php:212 msgid "I am away right now" @@ -4098,12 +4007,12 @@ msgstr "Eksport Kanału" #: ../../Zotlabs/Module/Uexport.php:75 msgid "" "Export your basic channel information to a file. This acts as a backup of your " -"connections, permissions, profile and basic data, which can be used to import " -"your data to a new server hub, but does not contain your content." +"connections, permissions, profile and basic data, which can be used to import your " +"data to a new server hub, but does not contain your content." msgstr "" -"Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia " -"zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można użyć " -"do zaimportowania danych do nowego portalu, ale nie zawiera treści." +"Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia zapasowa " +"połączeń, uprawnień, profilu i podstawowych danych, których można użyć do " +"zaimportowania danych do nowego portalu, ale nie zawiera treści." #: ../../Zotlabs/Module/Uexport.php:76 msgid "Export Content" @@ -4112,16 +4021,15 @@ msgstr "Eksport Treści" #: ../../Zotlabs/Module/Uexport.php:77 msgid "" "Export your channel information and recent content to a JSON backup that can be " -"restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This file " -"may be VERY large. Please be patient - it may take several minutes for this " -"download to begin." +"restored or imported to another server hub. This backs up all of your connections, " +"permissions, profile data and several months of posts. This file may be VERY large. " +"Please be patient - it may take several minutes for this download to begin." msgstr "" -"Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, " -"którą można przywrócić lub zaimportować do innego portalu. Tworzy to kopie " -"zapasowe wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku " -"miesięcy. Ten plik może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie " -"pobierania może zająć kilka minut." +"Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, którą " +"można przywrócić lub zaimportować do innego portalu. Tworzy to kopie zapasowe " +"wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku miesięcy. Ten plik " +"może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie pobierania może zająć kilka " +"minut." #: ../../Zotlabs/Module/Uexport.php:79 msgid "Export your posts from a given year." @@ -4129,44 +4037,44 @@ msgstr "Eksportuj swoje wpisy z danego roku." #: ../../Zotlabs/Module/Uexport.php:81 msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. If " -"the export fails (possibly due to memory exhaustion on your server hub), please " -"try again selecting a more limited date range." +"You may also export your posts and conversations for a particular year or month. " +"Adjust the date in your browser location bar to select other dates. If the export " +"fails (possibly due to memory exhaustion on your server hub), please try again " +"selecting a more limited date range." msgstr "" -"Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub " -"miesiąca. Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. " -"Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w " -"serwera portalu), spróbuj ponownie, wybierając bardziej ograniczony zakres dat." +"Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub miesiąca. " +"Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. Jeśli eksport się " +"nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w serwera portalu), spróbuj " +"ponownie, wybierając bardziej ograniczony zakres dat." #: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" -"To select all posts for a given year, such as this year, visit " -"%2$s" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -"Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2$s" +"Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2$s" #: ../../Zotlabs/Module/Uexport.php:83 #, php-format msgid "" -"To select all posts for a given month, such as January of this year, visit %2$s" +"To select all posts for a given month, such as January of this year, visit %2$s" msgstr "" -"Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź " -"%2$s" +"Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź %2$s" #: ../../Zotlabs/Module/Uexport.php:84 #, php-format msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import or " -"restore these in date order (oldest first)." +"These content files may be imported or restored by visiting %2$s " +"on any site containing your channel. For best results please import or restore these " +"in date order (oldest first)." msgstr "" -"Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2$s w dowolnym portalu zawierającym Twój kanał. Aby uzyskać " -"najlepsze wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)." +"Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę " +"%2$s w dowolnym portalu zawierającym Twój kanał. Aby uzyskać najlepsze wyniki, " +"zaimportuj lub przywróć je w kolejności (od najstarszych)." #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." @@ -4188,11 +4096,11 @@ msgstr "Zresetowano hasło na %s" #: ../../Zotlabs/Module/Lostpass.php:68 msgid "" -"Request could not be verified. (You may have previously submitted it.) Password " -"reset failed." +"Request could not be verified. (You may have previously submitted it.) Password reset " +"failed." msgstr "" -"Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). " -"Resetowanie hasła nie powiodło się." +"Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). Resetowanie hasła " +"nie powiodło się." #: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1725 msgid "Password Reset" @@ -4208,7 +4116,7 @@ msgstr "Twoje nowe hasło to" #: ../../Zotlabs/Module/Lostpass.php:94 msgid "Save or copy your new password - and then" -msgstr "Zapisz lub skopiuj nowe hasło - a następnie" +msgstr "Zapisz lub skopiuj nowe hasło, a następnie" #: ../../Zotlabs/Module/Lostpass.php:95 msgid "click here to login" @@ -4216,8 +4124,7 @@ msgstr "kliknij tutaj aby się zalogować" #: ../../Zotlabs/Module/Lostpass.php:96 msgid "" -"Your password may be changed from the Settings page after successful " -"login." +"Your password may be changed from the Settings page after successful login." msgstr "" "Twoje hasło może zostać zmienione na stronie Ustawienia po pomyślnym " "zalogowaniu." @@ -4233,11 +4140,11 @@ msgstr "Zapomniałeś hasła?" #: ../../Zotlabs/Module/Lostpass.php:131 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +"Enter your email address and submit to have your password reset. Then check your email " +"for further instructions." msgstr "" -"Wpisz swój adres e-mail i prześlij, aby zresetować hasło. Następnie sprawdź " -"swoja skrzynkę e-mail, aby uzyskać dalsze instrukcje." +"Wpisz swój adres e-mail i prześlij, aby zresetować hasło. Następnie sprawdź swoja " +"skrzynkę e-mail, aby uzyskać dalsze instrukcje." #: ../../Zotlabs/Module/Lostpass.php:132 msgid "Email Address" @@ -4285,11 +4192,9 @@ msgid "shared a file with you" msgstr "udostępnił Ci plik" #: ../../Zotlabs/Module/Display.php:354 ../../Zotlabs/Module/Channel.php:483 -msgid "" -"You must enable javascript for your browser to be able to view this content." +msgid "You must enable javascript for your browser to be able to view this content." msgstr "" -"Aby przeglądać te treści, musisz włączyć obsługę JavaScript w swojej " -"przeglądarce." +"Aby przeglądać te treści, musisz włączyć obsługę JavaScript w swojej przeglądarce." #: ../../Zotlabs/Module/Display.php:372 msgid "Article" @@ -4330,13 +4235,10 @@ msgid "Your software should be updated" msgstr "Twoje oprogramowanie powinno zostać zaktualizowane" #: ../../Zotlabs/Module/Admin.php:141 ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Security.php:98 +#: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Admin/Security.php:98 #: ../../Zotlabs/Module/Admin/Accounts.php:307 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:440 +#: ../../Zotlabs/Module/Admin/Channels.php:145 ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Addons.php:342 ../../Zotlabs/Module/Admin/Addons.php:440 #: ../../Zotlabs/Module/Admin/Site.php:408 msgid "Administration" msgstr "Administracja" @@ -4351,7 +4253,7 @@ msgstr "Zarejestrowane konta" #: ../../Zotlabs/Module/Admin.php:146 msgid "Pending registrations" -msgstr "Rejestracja oczekująca" +msgstr "Rejestracje oczekujące" #: ../../Zotlabs/Module/Admin.php:147 msgid "Registered channels" @@ -4446,8 +4348,7 @@ msgstr "Zobacz zdjęcie" #: ../../Zotlabs/Lib/Apps.php:1196 ../../Zotlabs/Lib/Activity.php:1552 #: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Pinned.php:268 #: ../../Zotlabs/Widget/Album.php:84 ../../include/conversation.php:1214 -#: ../../include/cdav.php:158 ../../include/cdav.php:159 -#: ../../include/cdav.php:167 +#: ../../include/cdav.php:158 ../../include/cdav.php:159 ../../include/cdav.php:167 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1189 msgid "Unknown" msgstr "Nieznane" @@ -4523,7 +4424,7 @@ msgstr "Oznacz jako \"dla dorosłych\" w widoku albumu" #: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:318 msgid "I like this (toggle)" -msgstr "Lubię to (przełącz)" +msgstr "Podoba mis sie to (przełącz)" #: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:319 msgid "I don't like this (toggle)" @@ -4547,12 +4448,12 @@ msgstr "Komentarz" #: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:652 msgctxt "title" msgid "Likes" -msgstr "Polubienia" +msgstr "Ocen pozytywnych" #: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:653 msgctxt "title" msgid "Dislikes" -msgstr "Niepolubienia" +msgstr "Ocen negatywnych" #: ../../Zotlabs/Module/Photos.php:1114 ../../Zotlabs/Widget/Pinned.php:77 #: ../../include/conversation.php:654 @@ -4601,18 +4502,18 @@ msgstr "Pokaż wszystkie" msgctxt "noun" msgid "Like" msgid_plural "Likes" -msgstr[0] "Polubienie" -msgstr[1] "Polubienia" -msgstr[2] "Polubień" +msgstr[0] "Ocena pozytywna" +msgstr[1] "Oceny pozytywne" +msgstr[2] "Oce pozytywanych" #: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:248 #: ../../include/conversation.php:1755 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" -msgstr[0] "Niepolubienie" -msgstr[1] "Niepolubienia" -msgstr[2] "Niepolubień" +msgstr[0] "Ocena negartwna" +msgstr[1] "Oceny negatywne" +msgstr[2] "Ocen negatywnych" #: ../../Zotlabs/Module/Photos.php:1247 msgid "Photo Tools" @@ -4629,12 +4530,12 @@ msgstr "Mapa" #: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:491 msgctxt "noun" msgid "Likes" -msgstr "Polubienia" +msgstr "Oceny pozytywne" #: ../../Zotlabs/Module/Photos.php:1270 ../../Zotlabs/Lib/ThreadItem.php:492 msgctxt "noun" msgid "Dislikes" -msgstr "Niepolubienia" +msgstr "Oceny negatywne" #: ../../Zotlabs/Module/Photos.php:1275 ../../Zotlabs/Storage/Browser.php:411 #: ../../Zotlabs/Lib/ThreadItem.php:497 ../../Zotlabs/Widget/Pinned.php:158 @@ -4660,8 +4561,7 @@ msgstr "Tylko wpisy" #: ../../Zotlabs/Module/Channel.php:206 msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" -"Niewystarczające uprawnienia. Żądanie zostało przekierowane na stronę profilu." +msgstr "Niewystarczające uprawnienia. Żądanie zostało przekierowane na stronę profilu." #: ../../Zotlabs/Module/Channel.php:221 ../../Zotlabs/Module/Network.php:168 msgid "Search Results For:" @@ -4737,50 +4637,42 @@ msgid "View your connections and/or add somebody whose address you already know" msgstr "Wyświetl swoje kontakty albo dodaj osobę, której adres już znasz" #: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" +msgid "View your personal stream (this may be empty until you add some connections)" msgstr "" -"Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych " -"połączeń)" +"Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych połączeń)" #: ../../Zotlabs/Module/Go.php:52 msgid "View the public stream. Warning: this content is not moderated" -msgstr "" -"Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana" +msgstr "Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana" -#: ../../Zotlabs/Module/Connections.php:58 -#: ../../Zotlabs/Module/Connections.php:116 +#: ../../Zotlabs/Module/Connections.php:58 ../../Zotlabs/Module/Connections.php:116 #: ../../Zotlabs/Module/Connections.php:274 msgid "Active" -msgstr "Aktywny" +msgstr "Aktywne" -#: ../../Zotlabs/Module/Connections.php:63 -#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:63 ../../Zotlabs/Module/Connections.php:182 #: ../../Zotlabs/Module/Connections.php:279 msgid "Blocked" -msgstr "Zablokowany" +msgstr "Zablokowane" -#: ../../Zotlabs/Module/Connections.php:68 -#: ../../Zotlabs/Module/Connections.php:189 +#: ../../Zotlabs/Module/Connections.php:68 ../../Zotlabs/Module/Connections.php:189 #: ../../Zotlabs/Module/Connections.php:278 msgid "Ignored" -msgstr "Ignorowany" +msgstr "Ignorowane" -#: ../../Zotlabs/Module/Connections.php:73 -#: ../../Zotlabs/Module/Connections.php:203 +#: ../../Zotlabs/Module/Connections.php:73 ../../Zotlabs/Module/Connections.php:203 #: ../../Zotlabs/Module/Connections.php:277 msgid "Hidden" -msgstr "Ukryty" +msgstr "Ukryte" -#: ../../Zotlabs/Module/Connections.php:78 -#: ../../Zotlabs/Module/Connections.php:196 +#: ../../Zotlabs/Module/Connections.php:78 ../../Zotlabs/Module/Connections.php:196 msgid "Archived/Unreachable" msgstr "Zarchiwizowane/Nieosiągalne" #: ../../Zotlabs/Module/Connections.php:83 ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Notifications.php:53 ../../Zotlabs/Module/Menu.php:180 msgid "New" -msgstr "Nowy" +msgstr "Nowe" #: ../../Zotlabs/Module/Connections.php:158 msgid "Active Connections" @@ -4790,8 +4682,7 @@ msgstr "Aktywne połączenia" msgid "Show active connections" msgstr "Pokaż aktywne połączenia" -#: ../../Zotlabs/Module/Connections.php:165 -#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Module/Connections.php:165 ../../Zotlabs/Widget/Notifications.php:104 msgid "New Connections" msgstr "Nowe połączenia" @@ -4862,14 +4753,14 @@ msgstr "Stan" #: ../../Zotlabs/Module/Connections.php:340 msgid "Connected" -msgstr "Połączene" +msgstr "Połączone" #: ../../Zotlabs/Module/Connections.php:342 msgid "Approve connection" msgstr "Zatwierdź połączenie" -#: ../../Zotlabs/Module/Connections.php:343 -#: ../../Zotlabs/Module/Admin/Accounts.php:318 ../../include/conversation.php:776 +#: ../../Zotlabs/Module/Connections.php:343 ../../Zotlabs/Module/Admin/Accounts.php:318 +#: ../../include/conversation.php:776 msgid "Approve" msgstr "Zatwierdź" @@ -4932,15 +4823,15 @@ msgstr "Zaktualizowano ustawienia narzędzia koligacji." #: ../../Zotlabs/Module/Affinity.php:47 msgid "" -"This app presents a slider control in your connection editor and also on your " -"network page. The slider represents your degree of friendship (affinity) with " -"each connection. It allows you to zoom in or out and display conversations from " -"only your closest friends or everybody in your stream." +"This app presents a slider control in your connection editor and also on your network " +"page. The slider represents your degree of friendship (affinity) with each connection. " +"It allows you to zoom in or out and display conversations from only your closest " +"friends or everybody in your stream." msgstr "" -"Ta aplikacja przedstawia suwak w edytorze połączeń, a także na stronie " -"internetowej. Suwak przedstawia stopień przyjaźni (koligacji) z każdym " -"połączeniem. Umożliwia powiększanie i pomniejszanie oraz wyświetlanie rozmów " -"tylko od najbliższych znajomych lub wszystkich w strumieniu." +"Ta aplikacja przedstawia suwak w edytorze połączeń, a także na stronie internetowej. " +"Suwak przedstawia stopień przyjaźni (koligacji) z każdym połączeniem. Umożliwia " +"powiększanie i pomniejszanie oraz wyświetlanie rozmów tylko od najbliższych znajomych " +"lub wszystkich w strumieniu." #: ../../Zotlabs/Module/Affinity.php:52 msgid "Affinity Tool App" @@ -4948,11 +4839,11 @@ msgstr "Aplikacja Narzędzie koligacji" #: ../../Zotlabs/Module/Affinity.php:57 msgid "" -"The numbers below represent the minimum and maximum slider default positions " -"for your network/stream page as a percentage." +"The numbers below represent the minimum and maximum slider default positions for your " +"network/stream page as a percentage." msgstr "" -"Poniższe liczby przedstawiają minimalne i maksymalne domyślne pozycje suwaków " -"na stronie sieci/strumienia w procentach." +"Poniższe liczby przedstawiają minimalne i maksymalne domyślne pozycje suwaków na " +"stronie sieci/strumienia w procentach." #: ../../Zotlabs/Module/Affinity.php:64 msgid "Default maximum affinity level" @@ -4975,8 +4866,7 @@ msgid "Persistent affinity levels" msgstr "Trwałe poziomy więzi" #: ../../Zotlabs/Module/Affinity.php:76 -msgid "" -"If disabled the max and min levels will be reset to default after page reload" +msgid "If disabled the max and min levels will be reset to default after page reload" msgstr "" "Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do wartości " "domyślnych po ponownym załadowaniu strony" @@ -4991,11 +4881,11 @@ msgstr "Brak kanału." #: ../../Zotlabs/Module/Common.php:45 msgid "No connections in common." -msgstr "Brak wspólnych połączeń." +msgstr "Brak popularnych połączeń." #: ../../Zotlabs/Module/Common.php:65 msgid "View Common Connections" -msgstr "Wyświetl typowe połączenia" +msgstr "Wyświetl popularne połączenia" #: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2186 #, php-format @@ -5026,8 +4916,7 @@ msgstr "Edytuj artykuł" msgid "Authentication failed." msgstr "Uwierzytelnianie nie powiodło się." -#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2625 -#: ../../boot.php:1717 +#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2625 ../../boot.php:1717 msgid "Remote Authentication" msgstr "Zdalne uwierzytelnianie" @@ -5045,8 +4934,7 @@ msgstr "Element nie jest dostępny." #: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 msgid "This setting requires special processing and editing has been blocked." -msgstr "" -"To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana." +msgstr "To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana." #: ../../Zotlabs/Module/Pconfig.php:57 msgid "Configuration Editor" @@ -5054,13 +4942,13 @@ msgstr "Edytor konfiguracji" #: ../../Zotlabs/Module/Pconfig.php:58 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how to " -"correctly use this feature." +"Warning: Changing some settings could render your channel inoperable. Please leave " +"this page unless you are comfortable with and knowledgeable about how to correctly use " +"this feature." msgstr "" -"Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał " -"przestanie działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie " -"wiesz, jak prawidłowo korzystać z tej funkcji." +"Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie " +"działać. Opuść tę stronę, chyba że czujesz się kompetentnie i wiesz, jak prawidłowo " +"korzystać z tej funkcji." #: ../../Zotlabs/Module/Randprof.php:29 msgid "Random Channel App" @@ -5078,13 +4966,11 @@ msgstr "Zaktualizowano ustawienia motywu." msgid "No themes found." msgstr "Nie znaleziono motywów." -#: ../../Zotlabs/Module/Admin/Themes.php:95 -#: ../../Zotlabs/Module/Admin/Addons.php:311 +#: ../../Zotlabs/Module/Admin/Themes.php:95 ../../Zotlabs/Module/Admin/Addons.php:311 msgid "Disable" msgstr "Wyłącz" -#: ../../Zotlabs/Module/Admin/Themes.php:97 -#: ../../Zotlabs/Module/Admin/Addons.php:314 +#: ../../Zotlabs/Module/Admin/Themes.php:97 ../../Zotlabs/Module/Admin/Addons.php:314 msgid "Enable" msgstr "Włącz" @@ -5092,30 +4978,26 @@ msgstr "Włącz" msgid "Screenshot" msgstr "Zrzut ekranu" -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Module/Admin/Themes.php:157 +#: ../../Zotlabs/Widget/Admin.php:28 msgid "Themes" msgstr "Motywy" -#: ../../Zotlabs/Module/Admin/Themes.php:124 -#: ../../Zotlabs/Module/Admin/Addons.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:124 ../../Zotlabs/Module/Admin/Addons.php:344 msgid "Toggle" msgstr "Przełącz" -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Module/Admin/Addons.php:345 ../../Zotlabs/Lib/Apps.php:339 -#: ../../Zotlabs/Widget/Settings_menu.php:61 ../../Zotlabs/Widget/Newmember.php:53 -#: ../../include/nav.php:106 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Module/Admin/Addons.php:345 +#: ../../Zotlabs/Lib/Apps.php:339 ../../Zotlabs/Widget/Settings_menu.php:61 +#: ../../Zotlabs/Widget/Newmember.php:53 ../../include/nav.php:106 msgid "Settings" msgstr "Ustawienia" -#: ../../Zotlabs/Module/Admin/Themes.php:134 -#: ../../Zotlabs/Module/Admin/Addons.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:134 ../../Zotlabs/Module/Admin/Addons.php:352 msgid "Author: " msgstr "Autor: " -#: ../../Zotlabs/Module/Admin/Themes.php:135 -#: ../../Zotlabs/Module/Admin/Addons.php:353 +#: ../../Zotlabs/Module/Admin/Themes.php:135 ../../Zotlabs/Module/Admin/Addons.php:353 msgid "Maintainer: " msgstr "Opiekun: " @@ -5129,35 +5011,33 @@ msgstr "[Nieobsługiwane]" #: ../../Zotlabs/Module/Admin/Security.php:89 msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +"By default, unfiltered HTML is allowed in embedded media. This is inherently insecure." msgstr "" -"Domyślnie, w osadzonych mediach jest dozwolony niefiltrowany HTML. Jest to z " -"natury niebezpieczne." +"Domyślnie, w osadzonych mediach jest dozwolony niefiltrowany HTML. Jest to z natury " +"niebezpieczne." #: ../../Zotlabs/Module/Admin/Security.php:92 msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +"The recommended setting is to only allow unfiltered HTML from the following sites:" msgstr "" -"Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z " -"następujących portali:" +"Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z następujących " +"portali:" #: ../../Zotlabs/Module/Admin/Security.php:93 msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://" +"vimeo.com/
https://soundcloud.com/
" msgstr "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://" +"vimeo.com/
https://soundcloud.com/
" #: ../../Zotlabs/Module/Admin/Security.php:94 msgid "" -"All other embedded content will be filtered, unless embedded " -"content from that site is explicitly blocked." +"All other embedded content will be filtered, unless embedded content " +"from that site is explicitly blocked." msgstr "" -"Wszystkie inne osadzone treści będą filtrowane, chyba że " -"osadzone treści z tego portalu są jawnie zablokowane." +"Wszystkie inne osadzone treści będą filtrowane, chyba że osadzone " +"treści z tego portalu są jawnie zablokowane." #: ../../Zotlabs/Module/Admin/Security.php:99 ../../Zotlabs/Widget/Admin.php:25 msgid "Security" @@ -5169,8 +5049,8 @@ msgstr "Zablokuj publiczny dostęp" #: ../../Zotlabs/Module/Admin/Security.php:101 msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +"Check to block public access to all otherwise public personal pages on this site " +"unless you are currently authenticated." msgstr "" "Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych stron " "osobistych na tym portalu, chyba że jesteś obecnie uwierzytelniony." @@ -5180,16 +5060,14 @@ msgid "Provide a cloud root directory" msgstr "Podaj katalog główny w chmurze" #: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "" -"The cloud root directory lists all channel names which provide public files" +msgid "The cloud root directory lists all channel names which provide public files" msgstr "" -"Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które " -"udostępniają pliki publiczne" +"Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które udostępniają " +"pliki publiczne" #: ../../Zotlabs/Module/Admin/Security.php:103 msgid "Show total disk space available to cloud uploads" -msgstr "" -"Pokaż całkowitą powierzchnię dyskową dostępną dla przesyłania plików do chmury" +msgstr "Pokaż całkowitą powierzchnię dyskową dostępną dla przesyłania plików do chmury" #: ../../Zotlabs/Module/Admin/Security.php:104 msgid "Set \"Transport Security\" HTTP header" @@ -5205,12 +5083,12 @@ msgstr "Dozwolone domeny e-mail" #: ../../Zotlabs/Module/Admin/Security.php:106 msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any domains" +"Comma separated list of domains which are allowed in email addresses for registrations " +"to this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -"Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail " -"podczas rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste " -"pole oznacza zezwolenie na dowolne domeny" +"Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail podczas " +"rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste pole oznacza " +"zezwolenie na dowolne domeny" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "Not allowed email domains" @@ -5219,24 +5097,23 @@ msgstr "Niedozwolone domeny e-mail" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "" "Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any domains, " -"unless allowed domains have been defined." +"registrations to this site. Wildcards are accepted. Empty to allow any domains, unless " +"allowed domains have been defined." msgstr "" -"Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail " -"podczas rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste " -"pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio " -"zdefiniowane jakieś dozwolone domeny." +"Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail podczas " +"rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste pole oznacza " +"zezwolenie na wszystkie domeny, chyba że zostały uprzednio zdefiniowane jakieś " +"dozwolone domeny." #: ../../Zotlabs/Module/Admin/Security.php:108 msgid "Allow communications only from these sites" msgstr "Zezwalaj na komunikację tylko z tych portali" #: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by default" +msgid "One site per line. Leave empty to allow communication from anywhere by default" msgstr "" -"Jeden portal w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na " -"komunikację z każdym portalem" +"Jeden portal w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na komunikację z " +"każdym portalem" #: ../../Zotlabs/Module/Admin/Security.php:109 msgid "Block communications from these sites" @@ -5247,11 +5124,9 @@ msgid "Allow communications only from these channels" msgstr "Zezwalaj na komunikację tylko z tych kanałów" #: ../../Zotlabs/Module/Admin/Security.php:110 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +msgid "One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -"Jeden kanał (hasz) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny " -"kanał" +"Jeden kanał (hasz) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny kanał" #: ../../Zotlabs/Module/Admin/Security.php:111 msgid "Block communications from these channels" @@ -5407,33 +5282,30 @@ msgstr "Klasa usługi" #: ../../Zotlabs/Module/Admin/Accounts.php:337 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało " -"opublikowane na tym portalu, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno " -"usunąć?" +"Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało opublikowane na " +"tym portalu, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" #: ../../Zotlabs/Module/Admin/Accounts.php:338 msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"The account {0} will be deleted!\\n\\nEverything this account has posted on this site " +"will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym " -"portalu zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym portalu " +"zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" #: ../../Zotlabs/Module/Admin/Accounts.php:347 ../../include/conversation.php:1123 msgid "Message" msgstr "Wiadowmość" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Admin/Features.php:55 ../../Zotlabs/Module/Admin/Features.php:56 #: ../../Zotlabs/Module/Settings/Features.php:38 ../../include/features.php:55 msgid "Off" msgstr "WYŁ" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Admin/Features.php:55 ../../Zotlabs/Module/Admin/Features.php:56 #: ../../Zotlabs/Module/Settings/Features.php:38 ../../include/features.php:55 msgid "On" msgstr "WŁ" @@ -5475,8 +5347,7 @@ msgstr "Pusta kolejka dla tego portalu" msgid "Last known contact" msgstr "Ostatni znany kontakt" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Update has been marked successful" msgstr "Aktualizacja została oznaczona jako pomyślna" @@ -5484,11 +5355,9 @@ msgstr "Aktualizacja została oznaczona jako pomyślna" #, php-format msgid "Verification of update %s failed. Check system logs." msgstr "" -"Weryfikacja aktualizacji %s nie zakończyła się pomyślnie. Sprawdź dzienniki " -"systemowe." +"Weryfikacja aktualizacji %s nie zakończyła się pomyślnie. Sprawdź dzienniki systemowe." -#: ../../Zotlabs/Module/Admin/Dbsync.php:35 -#: ../../Zotlabs/Module/Admin/Dbsync.php:74 +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 ../../Zotlabs/Module/Admin/Dbsync.php:74 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizacja %s została pomyślnie zastosowana." @@ -5496,16 +5365,14 @@ msgstr "Aktualizacja %s została pomyślnie zastosowana." #: ../../Zotlabs/Module/Admin/Dbsync.php:39 #, php-format msgid "Verifying update %s did not return a status. Unknown if it succeeded." -msgstr "" -"Weryfikacja aktualizacji %s nie zwróciła stanu. Nie wiadomo, czy się udało." +msgstr "Weryfikacja aktualizacji %s nie zwróciła stanu. Nie wiadomo, czy się udało." #: ../../Zotlabs/Module/Admin/Dbsync.php:42 #, php-format msgid "Update %s does not contain a verification function." msgstr "Aktualizacja %s nie zawiera funkcji weryfikacji." -#: ../../Zotlabs/Module/Admin/Dbsync.php:46 -#: ../../Zotlabs/Module/Admin/Dbsync.php:81 +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 ../../Zotlabs/Module/Admin/Dbsync.php:81 #, php-format msgid "Update function %s could not be found." msgstr "Nie można znaleźć funkcji aktualizacji %s." @@ -5514,13 +5381,11 @@ msgstr "Nie można znaleźć funkcji aktualizacji %s." #, php-format msgid "Executing update procedure %s failed. Check system logs." msgstr "" -"Wykonanie procedury aktualizacji %s nie powiodło się. Sprawdź dzienniki " -"systemowe." +"Wykonanie procedury aktualizacji %s nie powiodło się. Sprawdź dzienniki systemowe." #: ../../Zotlabs/Module/Admin/Dbsync.php:78 #, php-format -msgid "" -"Update %s did not return a status. It cannot be determined if it was successful." +msgid "Update %s did not return a status. It cannot be determined if it was successful." msgstr "Aktualizacja %s nie zwróciła stanu. Nie można ustalić, czy się udało." #: ../../Zotlabs/Module/Admin/Dbsync.php:99 @@ -5533,8 +5398,7 @@ msgstr "Oznacz sukces (jeśli aktualizacja została wykonana ręcznie)" #: ../../Zotlabs/Module/Admin/Dbsync.php:102 msgid "Attempt to verify this update if a verification procedure exists" -msgstr "" -"Spróbuj zweryfikować tą aktualizację, jeśli istnieje procedura weryfikacji" +msgstr "Spróbuj zweryfikować tą aktualizację, jeśli istnieje procedura weryfikacji" #: ../../Zotlabs/Module/Admin/Dbsync.php:103 msgid "Attempt to execute this update step automatically" @@ -5601,13 +5465,11 @@ msgstr "Niedozwolony kod kanału '%s'" msgid "select all" msgstr "wybierz wszystkie" -#: ../../Zotlabs/Module/Admin/Channels.php:150 -#: ../../Zotlabs/Module/Directory.php:362 +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../Zotlabs/Module/Directory.php:362 msgid "Censor" msgstr "Cenzoruj" -#: ../../Zotlabs/Module/Admin/Channels.php:151 -#: ../../Zotlabs/Module/Directory.php:362 +#: ../../Zotlabs/Module/Admin/Channels.php:151 ../../Zotlabs/Module/Directory.php:362 msgid "Uncensor" msgstr "Usuń cenzurę" @@ -5629,16 +5491,16 @@ msgstr "UID" #: ../../Zotlabs/Module/Admin/Channels.php:162 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +"Selected channels will be deleted!\\n\\nEverything that was posted in these channels " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Wybrane kanały zostaną usunięte!\\n\\nWszystko co zostało w nich opublikowane " -"będzie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Wybrane kanały zostaną usunięte!\\n\\nWszystko co zostało w nich opublikowane będzie " +"bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" #: ../../Zotlabs/Module/Admin/Channels.php:163 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" "Kanał {0} zostanie usunięty!\\n\\nWszystko co opublikowano na tym kanale będzie " "bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" @@ -5665,11 +5527,10 @@ msgid "Log file" msgstr "Plik dziennika" #: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver directory." +msgid "Must be writable by web server. Relative to your top-level webserver directory." msgstr "" -"Musi mieć możliwość zapisu przez serwer WWW. Ścieżka względna do katalogu " -"głównego serwera WWW." +"Musi mieć możliwość zapisu przez serwer WWW. Ścieżka względna do katalogu głównego " +"serwera WWW." #: ../../Zotlabs/Module/Admin/Logs.php:93 msgid "Log level" @@ -5714,8 +5575,8 @@ msgstr "Wtyczka %s jest wyłączona." msgid "Plugin %s enabled." msgstr "Wtyczka %s jest włączona." -#: ../../Zotlabs/Module/Admin/Addons.php:343 -#: ../../Zotlabs/Module/Admin/Addons.php:441 ../../Zotlabs/Widget/Admin.php:27 +#: ../../Zotlabs/Module/Admin/Addons.php:343 ../../Zotlabs/Module/Admin/Addons.php:441 +#: ../../Zotlabs/Widget/Admin.php:27 msgid "Addons" msgstr "Dodatki" @@ -5739,8 +5600,7 @@ msgstr "Kompatybilne role serwera: " msgid "Requires: " msgstr "Wymagania: " -#: ../../Zotlabs/Module/Admin/Addons.php:359 -#: ../../Zotlabs/Module/Admin/Addons.php:446 +#: ../../Zotlabs/Module/Admin/Addons.php:359 ../../Zotlabs/Module/Admin/Addons.php:446 msgid "Disabled - version incompatibility" msgstr "Wyłączone - niezgodność wersji" @@ -5809,8 +5669,7 @@ msgstr "Zaktualizowano ustawienia portalu." msgid "Default" msgstr "Domyślnie" -#: ../../Zotlabs/Module/Admin/Site.php:262 -#: ../../Zotlabs/Module/Settings/Display.php:118 +#: ../../Zotlabs/Module/Admin/Site.php:262 ../../Zotlabs/Module/Settings/Display.php:118 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (niekompatybilne)" @@ -5861,11 +5720,11 @@ msgstr "Minuta/Minuty" #: ../../Zotlabs/Module/Admin/Site.php:354 ../../Zotlabs/Module/Invite.php:399 msgid "Hour(s)" -msgstr "Godzin/Godziny" +msgstr "Godzina/Godziny" #: ../../Zotlabs/Module/Admin/Site.php:355 ../../Zotlabs/Module/Invite.php:400 msgid "Day(s)" -msgstr "Dzień.Dni" +msgstr "Dzień/Dni" #: ../../Zotlabs/Module/Admin/Site.php:356 msgid "Week(s)" @@ -5940,11 +5799,11 @@ msgstr "Informacje o administratorze" #: ../../Zotlabs/Module/Admin/Site.php:423 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +"Contact information for site administrators. Displayed on siteinfo page. BBCode can " +"be used here" msgstr "" -"Informacje kontaktowe o administratorach portalu. Wyświetlane na stronie " -"informacji o portalu. Tutaj można użyć BBCode" +"Informacje kontaktowe o administratorach portalu. Wyświetlane na stronie informacji o " +"portalu. Tutaj można użyć BBCode" #: ../../Zotlabs/Module/Admin/Site.php:424 ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" @@ -5952,11 +5811,11 @@ msgstr "Informacje o portalu" #: ../../Zotlabs/Module/Admin/Site.php:424 msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. BBCode " -"can be used here" +"Publicly visible description of this site. Displayed on siteinfo page. BBCode can be " +"used here" msgstr "" -"Publicznie widoczny opis tego portalu. Wyświetlane na stronie informacji o " -"portalu. Tutaj można użyć BBCode" +"Publicznie widoczny opis tego portalu. Wyświetlane na stronie informacji o portalu. " +"Tutaj można użyć BBCode" #: ../../Zotlabs/Module/Admin/Site.php:425 msgid "System language" @@ -5971,8 +5830,8 @@ msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -"Domyślny motyw systemu - może zostać zastąpiony w profilu użytkownika w opcji - " -"zmień ustawienia motywu" +"Domyślny motyw systemu - może zostać zastąpiony w profilu użytkownika w opcji - zmień ustawienia motywu" #: ../../Zotlabs/Module/Admin/Site.php:429 msgid "Allow Feeds as Connections" @@ -5987,11 +5846,10 @@ msgid "Maximum image size" msgstr "Maksymalny rozmiar obrazu" #: ../../Zotlabs/Module/Admin/Site.php:430 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no limits." +msgid "Maximum size in bytes of uploaded images. Default is 0, which means no limits." msgstr "" -"Maksymalny rozmiar przesłanych obrazów w bajtach. Wartość domyślna to 0, co " -"oznacza brak ograniczeń." +"Maksymalny rozmiar przesyłanych obrazów w bajtach. Wartość domyślna to 0, co oznacza " +"brak ograniczeń." #: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age" @@ -5999,14 +5857,13 @@ msgstr "Minimalny wiek" #: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age (in years) for who may register on this site." -msgstr "" -"Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej stronie." +msgstr "Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tym portalu." #: ../../Zotlabs/Module/Admin/Site.php:432 msgid "Which best describes the types of account offered by this hub?" msgstr "" -"Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez " -"ten portal?" +"Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez ten " +"portal?" #: ../../Zotlabs/Module/Admin/Site.php:432 msgid "This is displayed on the public server site list." @@ -6031,38 +5888,36 @@ msgstr "Skonfiguruj dni i godziny otwarte rejestracji" #: ../../Zotlabs/Module/Admin/Site.php:453 msgid "Empty or '-:-' value will keep registration open 24/7 (default)" msgstr "" -"Wartość pusta lub '-:-' sprawi, że rejestracja będzie otwarta 24 godziny na " -"dobę i 7 dni w tygodniu (domyślne ustawienie)" +"Wartość pusta lub '-:-' sprawi, że rejestracja będzie otwarta 24 godziny na dobę i 7 " +"dni w tygodniu (domyślne ustawienie)" #: ../../Zotlabs/Module/Admin/Site.php:454 msgid "" -"Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-" -"` example: 1:800-1200" +"Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` " +"example: 1:800-1200" msgstr "" -"Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do " -"myślnikiem '-'. Przykład: 1:800-1200" +"Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do myślnikiem " +"'-'. Przykład: 1:800-1200" #: ../../Zotlabs/Module/Admin/Site.php:455 -msgid "" -"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700" +msgid "Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700" msgstr "" -"Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: " -"1:900-1700 2:900-1700" +"Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: 1:900-1700 " +"2:900-1700" #: ../../Zotlabs/Module/Admin/Site.php:456 msgid "" "From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or " "1-2,4-5:900-1700" msgstr "" -"Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: " -"1:800-1200,1300-1700 lub 1-2,4-5:900-1700" +"Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: 1:800-1200,1300-1700 lub " +"1-2,4-5:900-1700" #: ../../Zotlabs/Module/Admin/Site.php:457 msgid "Advanced examples:" msgstr "Zaawansowane przykłady:" -#: ../../Zotlabs/Module/Admin/Site.php:457 -#: ../../Zotlabs/Module/Settings/Channel.php:420 +#: ../../Zotlabs/Module/Admin/Site.php:457 ../../Zotlabs/Module/Settings/Channel.php:420 msgid "or" msgstr "lub" @@ -6092,11 +5947,11 @@ msgstr "Automatyczne tworzenie kanałów" #: ../../Zotlabs/Module/Admin/Site.php:478 msgid "" -"If disabled the channel will be created in a separate step during the " -"registration process" +"If disabled the channel will be created in a separate step during the registration " +"process" msgstr "" -"Jeśli opcja jest wyłączona, kanał zostanie utworzony w osobnym kroku podczas " -"procesu rejestracji" +"Jeśli opcja jest wyłączona, kanał zostanie utworzony w osobnym kroku podczas procesu " +"rejestracji" #: ../../Zotlabs/Module/Admin/Site.php:482 msgid "Require invite code" @@ -6120,26 +5975,25 @@ msgstr "Konto porzucone po x dniach" #: ../../Zotlabs/Module/Admin/Site.php:500 msgid "" -"Will not waste system resources polling external sites for abandonded accounts. " -"Enter 0 for no time limit." +"Will not waste system resources polling external sites for abandonded accounts. Enter " +"0 for no time limit." msgstr "" -"Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w " -"poszukiwaniu porzuconych kont. Wpisz 0, aby nie mieć limitu czasu." +"Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w poszukiwaniu " +"porzuconych kont. Wpisz 0, aby nie mieć limitu czasu." #: ../../Zotlabs/Module/Admin/Site.php:505 msgid "Site homepage to show visitors (default: login box)" msgstr "" -"Strona główna portalu do wyświetlania odwiedzającym (domyślnie: formularz " -"logowania)" +"Strona główna portalu do wyświetlania odwiedzającym (domyślnie: formularz logowania)" #: ../../Zotlabs/Module/Admin/Site.php:505 msgid "" -"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +"example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage " +"called 'home' or 'include:home.html' to include a file." msgstr "" -"przykład: 'pubstream', aby pokazać strumień publiczny, 'page/sys/home', aby " -"wyświetlić systemową stronę internetową o nazwie 'home' lub 'include: home." -"html', aby dołączyć plik." +"przykład: 'pubstream', aby pokazać strumień publiczny, 'page/sys/home', aby wyświetlić " +"systemową stronę internetową o nazwie 'home' lub 'include: home.html', aby dołączyć " +"plik." #: ../../Zotlabs/Module/Admin/Site.php:506 msgid "Preserve site homepage URL" @@ -6147,8 +6001,7 @@ msgstr "Zachowaj adres URL strony głównej portalu" #: ../../Zotlabs/Module/Admin/Site.php:506 msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +"Present the site homepage in a frame at the original location instead of redirecting" msgstr "" "Przedstaw stronę główną portalu w ramce w oryginalnej lokalizacji zamiast " "przekierowywania" @@ -6159,23 +6012,21 @@ msgstr "Dozwolone domeny znajomych" #: ../../Zotlabs/Module/Admin/Site.php:507 msgid "" -"Comma separated list of domains which are allowed to establish friendships with " -"this site. Wildcards are accepted. Empty to allow any domains" +"Comma separated list of domains which are allowed to establish friendships with this " +"site. Wildcards are accepted. Empty to allow any domains" msgstr "" -"Rozdzielana przecinkami lista domen, które mogą zawierać przyjaźnie z tą " -"witryną. Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na " -"dowolne domeny" +"Rozdzielana przecinkami lista domen, które mogą zawierać przyjaźnie z tą witryną. " +"Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na dowolne domeny" #: ../../Zotlabs/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Wymuś publikację" #: ../../Zotlabs/Module/Admin/Site.php:508 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +msgid "Check to force all profiles on this site to be listed in the site directory." msgstr "" -"Zaznacz, aby wymusić opublikowanie w katalogu portalu wszystkich profili " -"założonych w tym portalu." +"Zaznacz, aby wymusić opublikowanie w katalogu wszystkich profili założonych na tym " +"portalu." #: ../../Zotlabs/Module/Admin/Site.php:509 msgid "Import Public Streams" @@ -6183,35 +6034,34 @@ msgstr "Importuj strumienie publiczne" #: ../../Zotlabs/Module/Admin/Site.php:509 msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +"Import and allow access to public content pulled from other sites. Warning: this " +"content is unmoderated." msgstr "" "Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych portali. " "Ostrzeżenie: ta zawartość jest niemoderowana." #: ../../Zotlabs/Module/Admin/Site.php:510 msgid "Site only Public Streams" -msgstr "Strumienie publiczne tylko z tego portalu" +msgstr "Strumień publiczny tylko z tego portalu" #: ../../Zotlabs/Module/Admin/Site.php:510 msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." +"Allow access to public content originating only from this site if Imported Public " +"Streams are disabled." msgstr "" -"Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego portalu, " -"jeśli importowane strumienie publiczne są wyłączone." +"Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego portalu, jeśli " +"importowane strumienie publiczne są wyłączone." #: ../../Zotlabs/Module/Admin/Site.php:511 msgid "Allow anybody on the internet to access the Public streams" -msgstr "Zezwól każdemu w internecie na dostęp do strumieni publicznych" +msgstr "Zezwól każdemu w Internecie na dostęp do strumienia publicznego" #: ../../Zotlabs/Module/Admin/Site.php:511 msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." +"Disable to require authentication before viewing. Warning: this content is unmoderated." msgstr "" -"Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta " -"zawartość jest niemoderowana." +"Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta zawartość " +"jest niemoderowana." #: ../../Zotlabs/Module/Admin/Site.php:512 msgid "Only import Public stream posts with this text" @@ -6230,7 +6080,7 @@ msgid "" "Present a login box to visitors on the home page if no other content has been " "configured." msgstr "" -"Przedstaw formularz logowania odwiedzającym na stronie głównej, jeśli nie " +"Wyświetlaj formularz logowania odwiedzającym na stronie głównej, jeśli nie " "skonfigurowano żadnych innych treści." #: ../../Zotlabs/Module/Admin/Site.php:517 @@ -6238,11 +6088,9 @@ msgid "Enable context help" msgstr "Włącz pomoc kontekstową" #: ../../Zotlabs/Module/Admin/Site.php:517 -msgid "" -"Display contextual help for the current page when the help button is pressed." +msgid "Display contextual help for the current page when the help button is pressed." msgstr "" -"Wyświetlanie pomocy kontekstowej dla bieżącej strony po naciśnięciu przycisku " -"pomocy." +"Wyświetlanie pomocy kontekstowej dla bieżącej strony po naciśnięciu przycisku pomocy." #: ../../Zotlabs/Module/Admin/Site.php:519 msgid "Reply-to email address for system generated email." @@ -6270,11 +6118,11 @@ msgstr "Włącz powiadomienia SSE" #: ../../Zotlabs/Module/Admin/Site.php:525 msgid "" -"If disabled, traditional polling will be used. Warning: this setting might not " -"be suited for shared hosting" +"If disabled, traditional polling will be used. Warning: this setting might not be " +"suited for shared hosting" msgstr "" -"Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to " -"ustawienie może nie być odpowiednie dla hostingu współdzielonego" +"Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to ustawienie " +"może nie być odpowiednie dla hostingu współdzielonego" #: ../../Zotlabs/Module/Admin/Site.php:527 msgid "Proxy user" @@ -6302,9 +6150,9 @@ msgid "" "Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large " "dedicated servers." msgstr "" -"Opóźnij procesy dostarczania w tle o kilka sekund, aby zmniejszyć obciążenie " -"systemu. Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych serwerów " -"prywatnych. 0-1 dla dużych serwerów dedykowanych." +"Opóźnij procesy dostarczania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. " +"Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych serwerów prywatnych. 0-1 " +"dla dużych serwerów dedykowanych." #: ../../Zotlabs/Module/Admin/Site.php:531 msgid "Deliveries per process" @@ -6315,8 +6163,8 @@ msgid "" "Number of deliveries to attempt in a single operating system process. Adjust if " "necessary to tune system performance. Recommend: 1-5." msgstr "" -"Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W " -"razie potrzeby dostosuj, aby dostroić wydajność systemu. Polecam: 1-5." +"Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W razie " +"potrzeby dostosuj, aby dostroić wydajność systemu. Zalecane: 1-5." #: ../../Zotlabs/Module/Admin/Site.php:532 msgid "Queue Threshold" @@ -6324,11 +6172,10 @@ msgstr "Próg kolejki" #: ../../Zotlabs/Module/Admin/Site.php:532 msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." +"Always defer immediate delivery if queue contains more than this number of entries." msgstr "" -"Zawsze odraczaj natychmiastowe dostarczenie, jeśli kolejka zawiera więcej " -"pozycji niż ta liczba." +"Zawsze odraczaj natychmiastowe dostarczenie, jeśli kolejka zawiera więcej pozycji niż " +"ta liczba." #: ../../Zotlabs/Module/Admin/Site.php:533 msgid "Poll interval" @@ -6336,11 +6183,11 @@ msgstr "Okres odpytywania" #: ../../Zotlabs/Module/Admin/Site.php:533 msgid "" -"Delay background polling processes by this many seconds to reduce system load. " -"If 0, use delivery interval." +"Delay background polling processes by this many seconds to reduce system load. If 0, " +"use delivery interval." msgstr "" -"Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie " -"systemu. Jeśli 0, użyty będzie interwał dostawy." +"Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. " +"Jeśli 0, użyty będzie interwał dostawy." #: ../../Zotlabs/Module/Admin/Site.php:534 msgid "Path to ImageMagick convert program" @@ -6348,25 +6195,22 @@ msgstr "Ścieżka do programu konwertującego ImageMagick" #: ../../Zotlabs/Module/Admin/Site.php:534 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" +"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 "" -"Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla " -"dużych obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może " -"wystąpić wyczerpanie pamięci. Przykład: /usr/bin/convert" +"Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla dużych " +"obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może wystąpić " +"wyczerpanie pamięci. Przykład: /usr/bin/convert" #: ../../Zotlabs/Module/Admin/Site.php:535 msgid "Maximum Load Average" msgstr "Maksymalne średnie obciążenie" #: ../../Zotlabs/Module/Admin/Site.php:535 -msgid "" -"Maximum system load before delivery and poll processes are deferred - default " -"50." +msgid "Maximum system load before delivery and poll processes are deferred - default 50." msgstr "" -"Maksymalne obciążenie systemu przed odroczeniem procesów dostarczania i " -"odpytywania - domyślnie 50." +"Maksymalne obciążenie systemu przed odroczeniem procesów dostarczania i odpytywania - " +"domyślnie 50." #: ../../Zotlabs/Module/Admin/Site.php:536 msgid "Expiration period in days for imported (grid/network) content" @@ -6379,19 +6223,18 @@ msgstr "0 dla braku wygaśnięcia zaimportowanej treści" #: ../../Zotlabs/Module/Admin/Site.php:537 msgid "Do not expire any posts which have comments less than this many days ago" msgstr "" -"Nie wygaszaj żadnych wpisów, które mają komentarze z datami mniejszymi niż ta " -"wartość dni od teraz" +"Nie wygaszaj żadnych wpisów, które mają komentarze z datami mniejszymi niż ta wartość " +"dni od teraz" #: ../../Zotlabs/Module/Admin/Site.php:538 msgid "Public servers: Optional landing (marketing) webpage for new registrants" msgstr "" -"Serwery publiczne: opcjonalna strona lądowania (marketingowa) dla nowych " -"rejestrujących" +"Serwery publiczne: opcjonalna strona lądowania (marketingowa) dla nowych rejestrujących" #: ../../Zotlabs/Module/Admin/Site.php:538 #, php-format msgid "Create this page first. Default is %s/register" -msgstr "Utwórz najpierw tą stronę. Domyślnie %s/ register" +msgstr "Utwórz najpierw tą stronę. Domyślnie %s/register" #: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Page to display after creating a new channel" @@ -6399,7 +6242,7 @@ msgstr "Strona do wyświetlenia po utworzeniu nowego kanału" #: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Default: profiles" -msgstr "Domyślnie: profile" +msgstr "Domyślnie: profiles" #: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Optional: site location" @@ -6417,38 +6260,31 @@ msgstr "Nieprawidłowa wartość czasu 24-godzinnego (hhmm/hmm)" msgid "New Profile Field" msgstr "Nowe pole profilu" -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 +#: ../../Zotlabs/Module/Admin/Profs.php:90 ../../Zotlabs/Module/Admin/Profs.php:110 msgid "Field nickname" msgstr "Krótka nazwa pola" -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 +#: ../../Zotlabs/Module/Admin/Profs.php:90 ../../Zotlabs/Module/Admin/Profs.php:110 msgid "System name of field" msgstr "Systemowa nazwa pola" -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 +#: ../../Zotlabs/Module/Admin/Profs.php:91 ../../Zotlabs/Module/Admin/Profs.php:111 msgid "Input type" msgstr "Typ wejścia" -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 +#: ../../Zotlabs/Module/Admin/Profs.php:92 ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Field Name" msgstr "Nazwa pola" -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 +#: ../../Zotlabs/Module/Admin/Profs.php:92 ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Label on profile pages" msgstr "Etykieta na stronach profilu" -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 +#: ../../Zotlabs/Module/Admin/Profs.php:93 ../../Zotlabs/Module/Admin/Profs.php:113 msgid "Help text" msgstr "Tekst pomocy" -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 +#: ../../Zotlabs/Module/Admin/Profs.php:93 ../../Zotlabs/Module/Admin/Profs.php:113 msgid "Additional info (optional)" msgstr "Dodatkowe informacje (opcjonalnie)" @@ -6502,7 +6338,7 @@ msgstr "Odmowa dostępu." #: ../../Zotlabs/Module/Thing.php:122 msgid "Thing updated" -msgstr "Rzecz zaktualizowana" +msgstr "Obiekt został zaktualizowany" #: ../../Zotlabs/Module/Thing.php:174 msgid "Object store: failed" @@ -6510,7 +6346,7 @@ msgstr "Magazyn obiektów: błąd" #: ../../Zotlabs/Module/Thing.php:178 msgid "Thing added" -msgstr "Rzecz dodana" +msgstr "Obiekt został dodany" #: ../../Zotlabs/Module/Thing.php:204 #, php-format @@ -6519,15 +6355,15 @@ msgstr "OBJ: %1$s %2$s %3$s" #: ../../Zotlabs/Module/Thing.php:267 msgid "Show Thing" -msgstr "Wyświetl rzecz" +msgstr "Wyświetl obiekt" #: ../../Zotlabs/Module/Thing.php:274 msgid "item not found." -msgstr "pozycja nie została znaleziona." +msgstr "element nie została znaleziony." #: ../../Zotlabs/Module/Thing.php:307 msgid "Edit Thing" -msgstr "Edytuj rzecz" +msgstr "Edytuj obiekt" #: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366 msgid "Select a profile" @@ -6543,36 +6379,32 @@ msgstr "Wysyłane tylko do osób przeglądających odpowiedni profil" #: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371 msgid "Name of thing e.g. something" -msgstr "Nazwa rzeczy, np. coś" +msgstr "Nazwa obiektu, np. coś" #: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372 msgid "URL of thing (optional)" -msgstr "URL rzeczy (opcjonalnie)" +msgstr "URL obiektu (opcjonalnie)" #: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373 msgid "URL for photo of thing (optional)" -msgstr "URL do zdjęcia rzeczy (opcjonalnie)" +msgstr "URL do zdjęcia obiektu (opcjonalnie)" #: ../../Zotlabs/Module/Thing.php:364 msgid "Add Thing to your Profile" -msgstr "Dodaj rzecz do swojego profilu" +msgstr "Dodaj obiekt do swojego profilu" #: ../../Zotlabs/Module/Suggest.php:40 msgid "Suggest Channels App" msgstr "Aplikacja Sugerowane Kanały" #: ../../Zotlabs/Module/Suggest.php:41 -msgid "" -"Suggestions for channels in the $Projectname network you might be interested in" -msgstr "" -"Propozycje dotyczące kanałów w sieci $Projectname, które mogą Cię zainteresować" +msgid "Suggestions for channels in the $Projectname network you might be interested in" +msgstr "Propozycje dotyczące kanałów w sieci $Projectname, które mogą Cię zainteresować" #: ../../Zotlabs/Module/Suggest.php:54 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 hours." +msgid "No suggestions available. If this is a new site, please try again in 24 hours." msgstr "" -"Brak dostępnych propozycji. Jeśli to jest nowy portal, spróbuj ponownie za 24 " -"godziny." +"Brak dostępnych propozycji. Jeśli to jest nowy portal, spróbuj ponownie za 24 godziny." #: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 msgid "Ignore/Hide" @@ -6590,13 +6422,13 @@ msgstr "Wymagana jest weryfikacja adresu e-mail" #: ../../Zotlabs/Module/Email_validation.php:37 #, php-format msgid "" -"A verification token was sent to your email address [%s]. Enter that token here " -"to complete the account verification step. Please allow a few minutes for " -"delivery, and check your spam folder if you do not see the message." +"A verification token was sent to your email address [%s]. Enter that token here to " +"complete the account verification step. Please allow a few minutes for delivery, and " +"check your spam folder if you do not see the message." msgstr "" -"Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta " -"ten token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na " -"dostarczenie i jeśli nie widzisz wiadomości, sprawdź folder ze spamem." +"Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta ten " +"token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na dostarczenie i " +"jeśli nie widzisz wiadomości, sprawdź folder ze spamem." #: ../../Zotlabs/Module/Email_validation.php:38 msgid "Resend Email" @@ -6634,29 +6466,28 @@ msgstr "Aplikacja Dostęp Gościnny" #: ../../Zotlabs/Module/Tokens.php:100 msgid "Create access tokens so that non-members can access private content" msgstr "" -"Utwórz tokeny dostępu, aby osoby niebędące członkami mogły uzyskać dostęp do " -"Twoich treści prywatnych" +"Utwórz tokeny dostępu, aby osoby niebędące członkami mogły uzyskać dostęp do Twoich " +"treści prywatnych" #: ../../Zotlabs/Module/Tokens.php:133 msgid "" -"Use this form to create temporary access identifiers to share things with non-" -"members. These identities may be used in Access Control Lists and visitors may " -"login using these credentials to access private content." +"Use this form to create temporary access identifiers to share things with non-members. " +"These identities may be used in Access Control Lists and visitors may login using " +"these credentials to access private content." msgstr "" -"Użyj tego formularza, aby utworzyć tymczasowe identyfikatory dostępu, aby " -"udostępniać rzeczy osobom niebędącym członkami. Tożsamości te mogą być używane " -"na listach kontroli dostępu, a odwiedzający mogą logować się przy użyciu tych " -"poświadczeń, aby uzyskać dostęp do treści prywatnych." +"Użyj tego formularza, aby utworzyć tymczasowe identyfikatory dostępu, aby udostępniać " +"rzeczy osobom niebędącym członkami. Tożsamości te mogą być używane na listach kontroli " +"dostępu, a odwiedzający mogą logować się przy użyciu tych poświadczeń, aby uzyskać " +"dostęp do treści prywatnych." #: ../../Zotlabs/Module/Tokens.php:135 msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +"You may also provide dropbox style access links to friends and associates by " +"adding the Login Password to any specific site URL as shown. Examples:" msgstr "" -"Możesz także udostępnić znajomym i współpracownikom łącza dostępu w stylu " -"dropbox, dodając hasło logowania do dowolnego adresu URL witryny, jak " -"pokazano na ilustracji. Przykłady:" +"Możesz także udostępnić znajomym i współpracownikom łącza dostępu w stylu dropbox, dodając hasło logowania do dowolnego adresu URL witryny, jak pokazano na " +"ilustracji. Przykłady:" #: ../../Zotlabs/Module/Tokens.php:170 msgid "Guest Access Tokens" @@ -6684,11 +6515,10 @@ msgstr "Zmień kolejność aplikacji na pasku aplikacji" #: ../../Zotlabs/Module/Apporder.php:48 msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" +"Use arrows to move the corresponding app left (top) or right (bottom) in the navbar" msgstr "" -"Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w prawo " -"(u dołu) na pasku nawigacyjnym" +"Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w prawo (u " +"dołu) na pasku nawigacyjnym" #: ../../Zotlabs/Module/Apporder.php:48 msgid "Use arrows to move the corresponding app up or down in the app tray" @@ -6738,8 +6568,7 @@ msgid "Could not connect to database." msgstr "Nie można połączyć się z bazą danych." #: ../../Zotlabs/Module/Setup.php:177 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS issue." +msgid "Could not connect to specified site URL. Possible SSL certificate or DNS issue." msgstr "" "Nie można połączyć się z określonym adresem URL portalu. Możliwy problem z " "certyfikatem SSL lub DNS." @@ -6754,11 +6583,11 @@ msgstr "Baza danych portalu została zainstalowana." #: ../../Zotlabs/Module/Setup.php:196 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +"You may need to import the file \"install/schema_xxx.sql\" manually using a database " +"client." msgstr "" -"Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za " -"pomocą klienta bazy danych." +"Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za pomocą " +"klienta bazy danych." #: ../../Zotlabs/Module/Setup.php:197 ../../Zotlabs/Module/Setup.php:261 #: ../../Zotlabs/Module/Setup.php:768 @@ -6778,28 +6607,25 @@ msgid "Database connection" msgstr "Połączenie z bazą danych" #: ../../Zotlabs/Module/Setup.php:285 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +msgid "In order to install $Projectname we need to know how to connect to your database." msgstr "" -"Aby zainstalować $Projectname, musimy wiedzieć, jak połączyć się z twoją bazą " -"danych." +"Aby zainstalować $Projectname, musimy wiedzieć, jak połączyć się z twoją bazą danych." #: ../../Zotlabs/Module/Setup.php:286 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +"Please contact your hosting provider or site administrator if you have questions about " +"these settings." msgstr "" "Jeśli masz pytania dotyczące tych ustawień, skontaktuj się z dostawcą usług " "hostingowych lub administratorem portalu." #: ../../Zotlabs/Module/Setup.php:287 msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +"The database you specify below should already exist. If it does not, please create it " +"before continuing." msgstr "" -"Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie " -"stało, utwórz ją przed kontynuowaniem." +"Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie stało, " +"utwórz ją przed kontynuowaniem." #: ../../Zotlabs/Module/Setup.php:291 msgid "Database Server Name" @@ -6838,11 +6664,10 @@ msgid "Site administrator email address" msgstr "Adres e-mail administratora portalu" #: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 -msgid "" -"Your account email address must match this in order to use the web admin panel." +msgid "Your account email address must match this in order to use the web admin panel." msgstr "" -"Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc " -"korzystać z panelu administratora sieci." +"Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc korzystać z " +"panelu administratora sieci." #: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Website URL" @@ -6874,11 +6699,11 @@ msgstr "Nie można znaleźć wersji CLI PHP w zmiennej PATH serwerze WWW." #: ../../Zotlabs/Module/Setup.php:399 msgid "" -"If you don't have a command line version of PHP installed on server, you will " -"not be able to run background polling via cron." +"If you don't have a command line version of PHP installed on server, you will not be " +"able to run background polling via cron." msgstr "" -"Jeśli nie masz wersji CLI PHP zainstalowanej na serwerze, nie będzie można " -"uruchomić odpytywania w tle przez cron." +"Jeśli nie masz wersji CLI PHP zainstalowanej na serwerze, nie będzie można uruchomić " +"odpytywania w tle przez cron." #: ../../Zotlabs/Module/Setup.php:403 msgid "PHP executable path" @@ -6889,24 +6714,23 @@ msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -"Wpisz pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole " -"puste, aby kontynuować instalację." +"Wpisz pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby " +"kontynuować instalację." #: ../../Zotlabs/Module/Setup.php:408 msgid "Command line PHP" msgstr "PHP CLI" #: ../../Zotlabs/Module/Setup.php:418 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is required." +msgid "Unable to check command line PHP, as shell_exec() is disabled. This is required." msgstr "" -"Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To " -"jest wymagane." +"Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To jest " +"wymagane." #: ../../Zotlabs/Module/Setup.php:422 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +"The command line version of PHP on your system does not have \"register_argc_argv\" " +"enabled." msgstr "PHP CLI w Twoim systemie nie ma włączonego \"register_argc_argv\"." #: ../../Zotlabs/Module/Setup.php:423 @@ -6919,21 +6743,20 @@ msgstr "PHP register_argc_argv" #: ../../Zotlabs/Module/Setup.php:446 msgid "" -"This is not sufficient to upload larger images or files. You should be able to " -"upload at least 4 MB at once." +"This is not sufficient to upload larger images or files. You should be able to upload " +"at least 4 MB at once." msgstr "" -"To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc " -"przesłać co najmniej 4 MB na raz." +"To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc przesłać co " +"najmniej 4 MB na raz." #: ../../Zotlabs/Module/Setup.php:448 #, php-format msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +"Your max allowed total upload size is set to %s. Maximum size of one file to upload is " +"set to %s. You are allowed to upload up to %d files at once." msgstr "" -"Twój maksymalny dopuszczalny łączny rozmiar przesyłanych plików to %s. " -"Maksymalny rozmiar jednego pliku do przesłania to %s. Możesz przesłać " -"jednocześnie do %d plików." +"Twój maksymalny dopuszczalny łączny rozmiar przesyłanych plików to %s. Maksymalny " +"rozmiar jednego pliku do przesłania to %s. Możesz przesłać jednocześnie do %d plików." #: ../../Zotlabs/Module/Setup.php:454 msgid "You can adjust these settings in the server php.ini file." @@ -6948,16 +6771,16 @@ msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to generate " "encryption keys" msgstr "" -"Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować " -"kluczy szyfrujących" +"Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy " +"szyfrujących" #: ../../Zotlabs/Module/Setup.php:480 msgid "" "If running under Windows, please see \"http://www.php.net/manual/en/openssl." "installation.php\"." msgstr "" -"Jeśli pracujesz w systemie Windows, przeczytaj \"http://www.php.net/manual/en/" -"openssl.installation.php\"." +"Jeśli pracujesz w systemie Windows, przeczytaj \"http://www.php.net/manual/en/openssl." +"installation.php\"." #: ../../Zotlabs/Module/Setup.php:483 msgid "Generate encryption keys" @@ -6998,8 +6821,7 @@ msgstr "Moduł Apache mod_rewrite" #: ../../Zotlabs/Module/Setup.php:510 msgid "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -"Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest " -"zainstalowany." +"Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest zainstalowany." #: ../../Zotlabs/Module/Setup.php:516 ../../Zotlabs/Module/Setup.php:519 msgid "exec" @@ -7007,11 +6829,10 @@ msgstr "exec" #: ../../Zotlabs/Module/Setup.php:516 msgid "" -"Error: exec is required but is either not installed or has been disabled in php." -"ini" +"Error: exec is required but is either not installed or has been disabled in php.ini" msgstr "" -"Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został " -"wyłączony w php.ini" +"Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został wyłączony w " +"php.ini" #: ../../Zotlabs/Module/Setup.php:522 ../../Zotlabs/Module/Setup.php:525 msgid "shell_exec" @@ -7019,11 +6840,11 @@ msgstr "shell_exec" #: ../../Zotlabs/Module/Setup.php:522 msgid "" -"Error: shell_exec is required but is either not installed or has been disabled " -"in php.ini" +"Error: shell_exec is required but is either not installed or has been disabled in php." +"ini" msgstr "" -"Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został wyłączony " -"w php.ini" +"Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został wyłączony w php." +"ini" #: ../../Zotlabs/Module/Setup.php:530 msgid "Error: libCURL PHP module required but not installed." @@ -7031,11 +6852,11 @@ msgstr "Błąd: wymagany jest moduł PHP libCURL, ale nie jest zainstalowany." #: ../../Zotlabs/Module/Setup.php:534 msgid "" -"Error: GD PHP module with JPEG support or ImageMagick graphics library required " -"but not installed." +"Error: GD PHP module with JPEG support or ImageMagick graphics library required but " +"not installed." msgstr "" -"Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką " -"graficzną ImageMagick, ale nie jest on zainstalowany." +"Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką graficzną " +"ImageMagick, ale nie jest on zainstalowany." #: ../../Zotlabs/Module/Setup.php:538 msgid "Error: openssl PHP module required but not installed." @@ -7067,19 +6888,19 @@ msgstr ".htconfig.php jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:585 msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" in " -"the top folder of your web server and it is unable to do so." +"The web installer needs to be able to create a file called \".htconfig.php\" in the " +"top folder of your web server and it is unable to do so." msgstr "" -"Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \"." -"htconfig.php\" w głównym folderze serwera WWW a nie może tego zrobić." +"Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \".htconfig.php\" " +"w głównym folderze serwera WWW a nie może tego zrobić." #: ../../Zotlabs/Module/Setup.php:586 msgid "" -"This is most often a permission setting, as the web server may not be able to " -"write files in your folder - even if you can." +"This is most often a permission setting, as the web server may not be able to write " +"files in your folder - even if you can." msgstr "" -"Najczęściej jest to ustawienie uprawnień, ponieważ serwer WWW może nie być w " -"stanie zapisywać plików w Twoim folderze - nawet jeśli możesz." +"Najczęściej jest to ustawienie uprawnień, ponieważ serwer WWW może nie być w stanie " +"zapisywać plików w Twoim folderze - nawet jeśli możesz." #: ../../Zotlabs/Module/Setup.php:587 msgid "Please see install/INSTALL.txt for additional information." @@ -7096,28 +6917,28 @@ msgstr "" #: ../../Zotlabs/Module/Setup.php:604 #, php-format msgid "" -"In order to store these compiled templates, the web server needs to have write " -"access to the directory %s under the top level web folder." +"In order to store these compiled templates, the web server needs to have write access " +"to the directory %s under the top level web folder." msgstr "" -"Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp do " -"zapisu w katalogu %s zlokalizowanym w folderze głównym serwera WWW." +"Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp do zapisu " +"w katalogu %s zlokalizowanym w folderze głównym serwera WWW." #: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +"Please ensure that the user that your web server runs as (e.g. www-data) has write " +"access to this folder." msgstr "" -"Upewnij się, że właściciel procesu serwer WWW (np. www-data), ma prawo do " -"zapisu w tym folderze." +"Upewnij się, że właściciel procesu serwer WWW (np. www-data), ma prawo do zapisu w tym " +"folderze." #: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "" -"Note: as a security measure, you should give the web server write access to %s " -"only--not the template files (.tpl) that it contains." +"Note: as a security measure, you should give the web server write access to %s only--" +"not the template files (.tpl) that it contains." msgstr "" -"Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu " -"tylko do %s - nie do plików szablonów (.tpl), które on zawiera." +"Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu tylko do " +"%s - nie do plików szablonów (.tpl), które on zawiera." #: ../../Zotlabs/Module/Setup.php:609 #, php-format @@ -7126,12 +6947,12 @@ msgstr "%s jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:625 msgid "" -"This software uses the store directory to save uploaded files. The web server " -"needs to have write access to the store directory under the top level web folder" +"This software uses the store directory to save uploaded files. The web server needs to " +"have write access to the store directory under the top level web folder" msgstr "" -"To oprogramowanie używa katalogu store do zapisywania przesyłanych " -"plików. Serwer WWW musi mieć dostęp do zapisu w katalogu store, " -"znajdującego się w folderze serwera WWW najwyższego poziomu" +"To oprogramowanie używa katalogu store do zapisywania przesyłanych plików. " +"Serwer WWW musi mieć dostęp do zapisu w katalogu store, znajdującego się w " +"folderze serwera WWW najwyższego poziomu" #: ../../Zotlabs/Module/Setup.php:629 msgid "store is writable" @@ -7139,78 +6960,72 @@ msgstr "katalog store jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:661 msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access to " -"this site." +"SSL certificate cannot be validated. Fix certificate or disable https access to this " +"site." msgstr "" -"Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp " -"https do tej witryny." +"Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp https do " +"tej witryny." #: ../../Zotlabs/Module/Setup.php:662 msgid "" -"If you have https access to your website or allow connections to TCP port 443 " -"(the https: port), you MUST use a browser-valid certificate. You MUST NOT use " -"self-signed certificates!" +"If you have https access to your website or allow connections to TCP port 443 (the " +"https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed " +"certificates!" msgstr "" -"Jeśli masz dostęp https do swojego portalu internetowego lub zezwalasz na " -"połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu " -"akceptowanego przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem " -"własnym!" +"Jeśli masz dostęp https do swojego portalu internetowego lub zezwalasz na połączenia z " +"portem TCP 443 (port https:), MUSISZ użyć certyfikatu akceptowanego przez " +"przeglądarki. NIE WOLNO używać certyfikatów z podpisem własnym!" #: ../../Zotlabs/Module/Setup.php:663 msgid "" -"This restriction is incorporated because public posts from you may for example " -"contain references to images on your own hub." +"This restriction is incorporated because public posts from you may for example contain " +"references to images on your own hub." msgstr "" -"To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na " -"przykład zawierać odniesienia do obrazów na Twoim portalu." +"To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na przykład " +"zawierać odniesienia do obrazów na Twoim portalu." #: ../../Zotlabs/Module/Setup.php:664 msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +"If your certificate is not recognized, members of other sites (who may themselves have " +"valid certificates) will get a warning message on their own site complaining about " +"security issues." msgstr "" -"Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy " -"sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej " -"witrynie, ostrzegający o problemie z bezpieczeństwem." +"Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy sami " +"mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej witrynie, " +"ostrzegający o problemie z bezpieczeństwem." #: ../../Zotlabs/Module/Setup.php:665 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +"This can cause usability issues elsewhere (not just on your own site) so we must " +"insist on this requirement." msgstr "" -"Może to powodować problemy z użytecznością w innym portalu (nie tylko na " -"Twoim), więc musimy nalegać na to wymaganie." +"Może to powodować problemy z użytecznością w innym portalu (nie tylko na Twoim), więc " +"musimy nalegać na to wymaganie." #: ../../Zotlabs/Module/Setup.php:666 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +msgid "Providers are available that issue free certificates which are browser-valid." msgstr "" "Są dostępni dostawcy, którzy wydają bezpłatne certyfikaty akceptowane przez " "przeglądarki." #: ../../Zotlabs/Module/Setup.php:667 msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +"If you are confident that the certificate is valid and signed by a trusted authority, " +"check to see if you have failed to install an intermediate cert. These are not " +"normally required by browsers, but are required for server-to-server communications." msgstr "" -"Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, " -"sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są " -"one wymagane przez przeglądarki, ale są wymagane do komunikacji między " -"serwerami." +"Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, sprawdź, " +"czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są one wymagane " +"przez przeglądarki, ale są wymagane do komunikacji między serwerami." #: ../../Zotlabs/Module/Setup.php:669 msgid "SSL certificate validation" msgstr "Walidacja certyfikatu SSL" #: ../../Zotlabs/Module/Setup.php:675 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration.Test: " +msgid "Url rewrite in .htaccess is not working. Check your server configuration.Test: " msgstr "" -"Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację serwera. " -"Test: " +"Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację serwera. Test: " #: ../../Zotlabs/Module/Setup.php:678 msgid "Url rewrite is working" @@ -7218,12 +7033,11 @@ msgstr "Przepisywanie adresu URL działa" #: ../../Zotlabs/Module/Setup.php:691 msgid "" -"The database configuration file \".htconfig.php\" could not be written. Please " -"use the enclosed text to create a configuration file in your web server root." +"The database configuration file \".htconfig.php\" could not be written. Please use the " +"enclosed text to create a configuration file in your web server root." msgstr "" "Nie można zapisać pliku konfiguracyjnego bazy danych \".htconfig.php\". Użyj " -"załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera " -"WWW." +"załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera WWW." #: ../../Zotlabs/Module/Setup.php:720 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:401 @@ -7235,8 +7049,7 @@ msgid "

What next?

" msgstr "

Co następnie?

" #: ../../Zotlabs/Module/Setup.php:767 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgid "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowanie zadania Cron." #: ../../Zotlabs/Module/Directory.php:122 @@ -7501,11 +7314,9 @@ msgstr "Utwórz własne limity uprawnień do połączeń" #: ../../Zotlabs/Module/Permcats.php:80 msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." +"Use this form to create permission rules for various classes of people or connections." msgstr "" -"Użyj tego formularza, aby utworzyć reguły uprawnień dla różnych klas osób lub " -"połączeń." +"Użyj tego formularza, aby utworzyć reguły uprawnień dla różnych klas osób lub połączeń." #: ../../Zotlabs/Module/Permcats.php:113 ../../Zotlabs/Lib/Apps.php:374 msgid "Permission Categories" @@ -7600,8 +7411,8 @@ msgstr "Rejestracja na tym portalu wymaga zatwierdzenia przez administratora." #: ../../Zotlabs/Module/Register.php:445 msgid "Register at another affiliated hub in case when prefered" msgstr "" -"Zarejestruj się w innym stowarzyszonym portalu w przypadku, gdy potrzebujesz " -"takiego rozwiązania" +"Zarejestruj się w innym stowarzyszonym portalu w przypadku, gdy potrzebujesz takiego " +"rozwiązania" #: ../../Zotlabs/Module/Register.php:458 msgid "Registration on this hub is by invitation only." @@ -7618,12 +7429,12 @@ msgstr "Regulamin" #: ../../Zotlabs/Module/Register.php:479 #, php-format msgid "I accept the %s for this website" -msgstr "Akceptuję % s dla tego portalu" +msgstr "Akceptuję %s dla tego portalu" #: ../../Zotlabs/Module/Register.php:486 #, php-format msgid "I am over %s years of age and accept the %s for this website" -msgstr "Mam ponad % s lat i akceptuję % s dla tego portalu" +msgstr "Mam ponad %s lat i akceptuję %s dla tego portalu" #: ../../Zotlabs/Module/Register.php:496 msgid "Your email address" @@ -7651,8 +7462,7 @@ msgstr "Preferowane jest prawdziwe imię i nazwisko" #: ../../Zotlabs/Module/Register.php:510 msgid "Your nickname will be used to create an easy to remember channel address" -msgstr "" -"Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału" +msgstr "Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału" #: ../../Zotlabs/Module/Register.php:514 msgid "Why do you want to join this hub?" @@ -7666,8 +7476,7 @@ msgstr "Pomoże to przejrzeć Twoją rejestrację" msgid "I have an invite code" msgstr "Mam kod zaproszenia" -#: ../../Zotlabs/Module/Register.php:542 ../../include/nav.php:168 -#: ../../boot.php:1696 +#: ../../Zotlabs/Module/Register.php:542 ../../include/nav.php:168 ../../boot.php:1696 msgid "Register" msgstr "Zarejestruj się" @@ -7708,8 +7517,7 @@ msgstr "Chroniony adres e-mail. Nie można zmienić tego adresu e-mail." #: ../../Zotlabs/Module/Settings/Account.php:33 msgid "System failure storing new email. Please try again." msgstr "" -"Błąd systemu podczas zapisywania nowej wiadomości e-mail. Proszę spróbuj " -"ponownie." +"Błąd systemu podczas zapisywania nowej wiadomości e-mail. Proszę spróbuj ponownie." #: ../../Zotlabs/Module/Settings/Account.php:51 msgid "Password verification failed." @@ -7814,8 +7622,7 @@ msgstr "Przeładuj obrazy przed renderowaniem strony" #: ../../Zotlabs/Module/Settings/Display.php:195 msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +"The subjective page load time will be longer but the page will be ready when displayed" msgstr "" "Subiektywny czas ładowania strony będzie dłuższy, ale strona będzie gotowa po " "wyświetleniu" @@ -7856,8 +7663,7 @@ msgstr "Domyślnie: menu kanału znajduje się w menu aplikacji" msgid "Link post titles to source" msgstr "Połącz tytuły wpisów ze źródłem" -#: ../../Zotlabs/Module/Settings/Display.php:203 -#: ../../Zotlabs/Widget/Newmember.php:75 +#: ../../Zotlabs/Module/Settings/Display.php:203 ../../Zotlabs/Widget/Newmember.php:75 msgid "New Member Links" msgstr "Linki dla nowych członków" @@ -7908,8 +7714,7 @@ msgstr "Opublikuj swój domyślny profil w katalogu sieciowym" #: ../../Zotlabs/Module/Settings/Channel.php:416 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -"Czy pozwalasz nam sugerować nowym członkom Ciebie jako potencjalnego " -"przyjaciela?" +"Czy pozwalasz nam sugerować nowym członkom Ciebie jako potencjalnego przyjaciela?" #: ../../Zotlabs/Module/Settings/Channel.php:429 msgid "Your channel address is" @@ -7961,11 +7766,11 @@ msgstr "Treść dla dorosłych" #: ../../Zotlabs/Module/Settings/Channel.php:507 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag any " -"adult material and/or nudity with #NSFW)" +"This channel frequently or regularly publishes adult content. (Please tag any adult " +"material and/or nudity with #NSFW)" msgstr "" -"Ten kanał często lub regularnie publikuje treści dla dorosłych. (Oznacz " -"wszelkie materiały dla dorosłych albo nagość tagiem #NSFW)" +"Ten kanał często lub regularnie publikuje treści dla dorosłych. (Oznacz wszelkie " +"materiały dla dorosłych albo nagość tagiem #NSFW)" #: ../../Zotlabs/Module/Settings/Channel.php:509 msgid "Security and Privacy Settings" @@ -7973,8 +7778,7 @@ msgstr "Ustawienia bezpieczeństwa i prywatności" #: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" -"Twoje uprawnienia są już skonfigurowane. Kliknij, aby wyświetlić/dostosować" +msgstr "Twoje uprawnienia są już skonfigurowane. Kliknij, aby wyświetlić/dostosować" #: ../../Zotlabs/Module/Settings/Channel.php:513 msgid "Hide my online presence" @@ -7990,17 +7794,15 @@ msgstr "Proste ustawienia prywatności:" #: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Very Public - extremely permissive (should be used with caution)" -msgstr "" -"Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)" +msgstr "Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)" #: ../../Zotlabs/Module/Settings/Channel.php:517 msgid "" "Typical - default public, privacy when desired (similar to social network " "permissions but with improved privacy)" msgstr "" -"Typowe - domyślne publiczne, prywatność w razie potrzeby (podobne do " -"uprawnień w popularnych sieciach społecznościowych, ale z podwyższoną " -"prywatnością)" +"Typowe - domyślne publiczne, prywatność w razie potrzeby (podobne do uprawnień w " +"popularnych sieciach społecznościowych, ale z podwyższoną prywatnością)" #: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "Private - default private, never open or public" @@ -8017,8 +7819,7 @@ msgstr "Pozwól innym oznaczać Twoje wpisy" #: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "Often used by the community to retro-actively flag inappropriate content" msgstr "" -"Często używany przez społeczność do oznaczania nieodpowiednich treści z mocą " -"wsteczną" +"Często używany przez społeczność do oznaczania nieodpowiednich treści z mocą wsteczną" #: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Channel Permission Limits" @@ -8059,8 +7860,7 @@ msgstr "Domyślna grupa prywatności" #: ../../Zotlabs/Module/Settings/Channel.php:529 msgid "Use my default audience setting for the type of object published" -msgstr "" -"Użyj mojego domyślnego ustawienia odbiorców dla typu publikowanego obiektu" +msgstr "Użyj mojego domyślnego ustawienia odbiorców dla typu publikowanego obiektu" #: ../../Zotlabs/Module/Settings/Channel.php:538 msgid "Default permissions category" @@ -8132,7 +7932,7 @@ msgstr "Zaczepiono Ciebie we wpisie" #: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Someone likes your post/comment" -msgstr "Ktoś polubił Twój wpis/komentarz" +msgstr "Ktoś ocenił pozytywnie Twój wpis/komentarz" #: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Show visual notifications including:" @@ -8203,7 +8003,7 @@ msgstr "Niewidoczna aktywność na publicznym strumieniu" #: ../../Zotlabs/Module/Settings/Channel.php:580 msgid "Unseen likes and dislikes" -msgstr "Niewidoczne polubienia i dezaprobaty" +msgstr "Niewidoczne oceny pozytywne i negatywne" #: ../../Zotlabs/Module/Settings/Channel.php:581 msgid "Unseen forum posts" @@ -8216,8 +8016,8 @@ msgstr "Serwer powiadomień e-mail (nazwa hosta)" #: ../../Zotlabs/Module/Settings/Channel.php:582 #, php-format msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" +"If your channel is mirrored to multiple hubs, set this to your preferred location. " +"This will prevent duplicate email notifications. Example: %s" msgstr "" "Jeśli twój kanał jest powielany na wielu ortalach, ustaw to na preferowaną " "lokalizację. Zapobiegnie to powielaniu powiadomień e-mail. Przykład: % s" @@ -8225,8 +8025,7 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "Show new wall posts, private messages and connections under Notices" msgstr "" -"Pokaż w powiadomieniach nowe wpisy na ścianie oraz prywatne wiadomości i " -"połączenia" +"Pokaż w powiadomieniach nowe wpisy na ścianie oraz prywatne wiadomości i połączenia" #: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "Notify me of events this many days in advance" @@ -8427,8 +8226,7 @@ msgstr "Zaproszenia, z których korzystamy" #: ../../Zotlabs/Module/Invite.php:537 msgid "§ Note, the email(s) sent will be recorded in the system logs" -msgstr "" -"§ Uwaga, wysłane wiadomości e-mail zostaną zapisane w dziennikach systemowych" +msgstr "§ Uwaga, wysłane wiadomości e-mail zostaną zapisane w dziennikach systemowych" #: ../../Zotlabs/Module/Invite.php:538 msgid "Enter email addresses, one per line:" @@ -8474,11 +8272,10 @@ msgid "This site is powered by $Projectname" msgstr "Ta witryna jest oparta na $Projectname" #: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" +msgid "Federated and decentralised networking and identity services provided by Zot" msgstr "" -"Sfederowane i zdecentralizowane usługi sieciowe i tożsamości wykorzystujące " -"protokół Zot" +"Sfederowane i zdecentralizowane usługi sieciowe i tożsamości wykorzystujące protokół " +"Zot" #: ../../Zotlabs/Module/Siteinfo.php:34 msgid "Additional federated transport protocols:" @@ -8533,8 +8330,7 @@ msgstr "Witamy w Hubzilla!" msgid "You have got no unseen posts..." msgstr "Nie masz żadnych nieoglądniętych wpisów..." -#: ../../Zotlabs/Module/Cover_photo.php:196 -#: ../../Zotlabs/Module/Cover_photo.php:254 +#: ../../Zotlabs/Module/Cover_photo.php:196 ../../Zotlabs/Module/Cover_photo.php:254 msgid "Cover Photos" msgstr "Zdjęcia na okładkę" @@ -8545,7 +8341,7 @@ msgstr "kobieta" #: ../../Zotlabs/Module/Cover_photo.php:298 ../../include/items.php:4967 #, php-format msgid "%1$s updated her %2$s" -msgstr "%1$s zaktualizował ją %2$s" +msgstr "%1$s zaktualizował jej %2$s" #: ../../Zotlabs/Module/Cover_photo.php:299 ../../include/items.php:4968 msgid "male" @@ -8559,7 +8355,7 @@ msgstr "%1$s zaktualizował jego %2$s" #: ../../Zotlabs/Module/Cover_photo.php:302 ../../include/items.php:4971 #, php-format msgid "%1$s updated their %2$s" -msgstr "%1$s zaktualizował swoje %2$s" +msgstr "%1$s zaktualizował ich %2$s" #: ../../Zotlabs/Module/Cover_photo.php:304 ../../include/channel.php:2356 msgid "cover photo" @@ -8611,7 +8407,7 @@ msgstr "Prześlij i kontynuuj" #: ../../Zotlabs/Module/Menu.php:171 ../../include/text.php:2713 msgid "Menus" -msgstr "Menu" +msgstr "Kolekcja menu" #: ../../Zotlabs/Module/Menu.php:181 msgid "Bookmarks allowed" @@ -8647,7 +8443,7 @@ msgstr "Nazwa menu" #: ../../Zotlabs/Module/Menu.php:220 msgid "Must be unique, only seen by you" -msgstr "Musi być wyjątkowy, widoczny tylko dla Ciebie" +msgstr "Musi być unikalna, widoczna tylko dla Ciebie" #: ../../Zotlabs/Module/Menu.php:221 msgid "Menu title" @@ -8718,9 +8514,7 @@ msgid "Channel Name" msgstr "Nazwa kanału" #: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +msgid "Add the following categories to posts imported from this source (comma separated)" msgstr "" "Dodaj następujące kategorie do wpisów zaimportowanych z tego źródła (oddzielone " "przecinkami)" @@ -8944,16 +8738,16 @@ msgstr "Upuść pliki tutaj, aby natychmiast przesłać" #: ../../Zotlabs/Storage/Browser.php:554 msgid "" -"You can select files via the upload button or drop them right here or into an " -"existing folder." +"You can select files via the upload button or drop them right here or into an existing " +"folder." msgstr "" "Możesz wybrać pliki za pomocą przycisku przesyłania lub upuścić je tutaj lub do " "istniejącego folderu." #: ../../Zotlabs/Zot/Auth.php:154 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +"Remote authentication blocked. You are logged into this site locally. Please logout " +"and retry." msgstr "" "Zdalne uwierzytelnianie zablokowane. Jesteś zalogowany lokalnie na tej stronie. " "Wyloguj się i spróbuj ponownie." @@ -8967,13 +8761,13 @@ msgstr "Witaj %s. Zdalne uwierzytelnianie powiodło się." #: ../../Zotlabs/Lib/Group.php:28 ../../include/group.php:23 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is not " -"what you intended, please create another group with a different name." +"A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, " +"please create another group with a different name." msgstr "" -"Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące " -"elementów mogą dotyczyć tej grupy i wszystkich przyszłych " -"członków. Jeśli nie tego chciałeś, utwórz kolejną grupę o innej nazwie." +"Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące elementów " +"mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie " +"tego chciałeś, utwórz kolejną grupę o innej nazwie." #: ../../Zotlabs/Lib/Group.php:270 ../../include/group.php:271 msgid "Add new connections to this privacy group" @@ -9073,8 +8867,8 @@ msgstr "Zdalna diagnostyka" msgid "Suggest Channels" msgstr "Proponowane kanały" -#: ../../Zotlabs/Lib/Apps.php:336 ../../include/nav.php:127 -#: ../../include/nav.php:131 ../../boot.php:1716 +#: ../../Zotlabs/Lib/Apps.php:336 ../../include/nav.php:127 ../../include/nav.php:131 +#: ../../boot.php:1716 msgid "Login" msgstr "Zaloguj się" @@ -9090,8 +8884,8 @@ msgstr "Wiki" msgid "Channel Home" msgstr "Strona główna kanału" -#: ../../Zotlabs/Lib/Apps.php:346 ../../include/features.php:82 -#: ../../include/nav.php:463 ../../include/nav.php:466 +#: ../../Zotlabs/Lib/Apps.php:346 ../../include/features.php:82 ../../include/nav.php:463 +#: ../../include/nav.php:466 msgid "Calendar" msgstr "Kalendarz" @@ -9224,13 +9018,13 @@ msgstr "Aktualizacja %s nie powiodła się. Zobacz dzienniki błędów." #: ../../Zotlabs/Lib/AccessList.php:28 msgid "" -"A deleted list with this name was revived. Existing item permissions " -"may apply to this list and any future members. If this is not " -"what you intended, please create another list with a different name." +"A deleted list with this name was revived. Existing item permissions may apply to this list and any future members. If this is not what you intended, " +"please create another list with a different name." msgstr "" -"Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące " -"elementów mogą dotyczyć tej listy i wszystkich przyszłych " -"członków. Jeśli nie tego chciałeś, utwórz kolejną listę z inną nazwą." +"Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące elementów " +"mogą dotyczyć tej listy i wszystkich przyszłych członków. Jeśli nie " +"tego chciałeś, utwórz kolejną listę z inną nazwą." #: ../../Zotlabs/Lib/AccessList.php:286 msgid "Add new connections to this access list" @@ -9324,8 +9118,7 @@ msgstr "Ta wiadomość e-mail została wysłana przez %1$s z %2$s." #: ../../Zotlabs/Lib/Enotify.php:67 #, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings at %s" +msgid "To stop receiving these messages, please adjust your Notification Settings at %s" msgstr "Aby nie otrzymywać tych wiadomości, zmień ustawienia powiadomień na %s" #: ../../Zotlabs/Lib/Enotify.php:68 @@ -9360,8 +9153,7 @@ msgstr "prywatna wiadomość" #: ../../Zotlabs/Lib/Enotify.php:131 #, php-format msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" -"Odwiedź %s, aby wyświetlić albo odpowiedzieć na swoje prywatne wiadomości." +msgstr "Odwiedź %s, aby wyświetlić albo odpowiedzieć na swoje prywatne wiadomości." #: ../../Zotlabs/Lib/Enotify.php:144 msgid "commented on" @@ -9369,11 +9161,11 @@ msgstr "skomentował" #: ../../Zotlabs/Lib/Enotify.php:157 msgid "liked" -msgstr "polubił" +msgstr "ocenił pozytywnie" #: ../../Zotlabs/Lib/Enotify.php:160 msgid "disliked" -msgstr "nie polubił" +msgstr "ocenił negatywnie" #: ../../Zotlabs/Lib/Enotify.php:165 msgid "voted on" @@ -9424,17 +9216,17 @@ msgstr "Odwiedź %s, aby zaakceptować lub odrzucić ten komentarz." #: ../../Zotlabs/Lib/Enotify.php:306 #, php-format msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "%1$s polubił [zrl=%2$s]Twój %3$s[/zrl]" +msgstr "%1$s ocenił pozytywnie [zrl=%2$s]Twój %3$s[/zrl]" #: ../../Zotlabs/Lib/Enotify.php:320 #, php-format msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notify] Polubienie wysłane dla rozmowy #%1$d przez %2$s" +msgstr "[$Projectname:Notify] Ocena poytywna wysłana dla rozmowy #%1$d przez %2$s" #: ../../Zotlabs/Lib/Enotify.php:321 #, php-format msgid "%1$s liked an item/conversation you created." -msgstr "%1$s polubił utworzony przez Ciebie element/rozmowę." +msgstr "%1$s ocenił pozytywnie utworzony przez Ciebie element/rozmowę." #: ../../Zotlabs/Lib/Enotify.php:332 #, php-format @@ -9613,8 +9405,7 @@ msgstr "Nie znaleziono wiki." msgid "Destination name already exists" msgstr "Nazwa celu już istnieje" -#: ../../Zotlabs/Lib/NativeWikiPage.php:167 -#: ../../Zotlabs/Lib/NativeWikiPage.php:368 +#: ../../Zotlabs/Lib/NativeWikiPage.php:167 ../../Zotlabs/Lib/NativeWikiPage.php:368 msgid "Page not found" msgstr "Strona nie znaleziona" @@ -9622,10 +9413,8 @@ msgstr "Strona nie znaleziona" msgid "Error reading page content" msgstr "Błąd podczas odczytu zawartości strony" -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 -#: ../../Zotlabs/Lib/NativeWikiPage.php:409 -#: ../../Zotlabs/Lib/NativeWikiPage.php:480 -#: ../../Zotlabs/Lib/NativeWikiPage.php:522 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 ../../Zotlabs/Lib/NativeWikiPage.php:409 +#: ../../Zotlabs/Lib/NativeWikiPage.php:480 ../../Zotlabs/Lib/NativeWikiPage.php:522 msgid "Error reading wiki" msgstr "Błąd podczas odczytu wiki" @@ -9653,19 +9442,16 @@ msgstr "Bez tytułu" msgid "Wiki resource_id required for git commit" msgstr "Identyfikator zasobu Wiki wymagany do zatwierdzenia przez Git" -#: ../../Zotlabs/Lib/NativeWikiPage.php:577 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +#: ../../Zotlabs/Lib/NativeWikiPage.php:577 ../../Zotlabs/Widget/Wiki_page_history.php:23 msgctxt "wiki_history" msgid "Message" msgstr "Wiadomość" -#: ../../Zotlabs/Lib/NativeWikiPage.php:578 -#: ../../Zotlabs/Widget/Wiki_page_history.php:24 +#: ../../Zotlabs/Lib/NativeWikiPage.php:578 ../../Zotlabs/Widget/Wiki_page_history.php:24 msgid "Date" msgstr "Data" -#: ../../Zotlabs/Lib/NativeWikiPage.php:580 -#: ../../Zotlabs/Widget/Wiki_page_history.php:26 +#: ../../Zotlabs/Lib/NativeWikiPage.php:580 ../../Zotlabs/Widget/Wiki_page_history.php:26 msgid "Compare" msgstr "Porównaj" @@ -9944,8 +9730,7 @@ msgid "May not attend %s's event" msgstr "Nie może uczestniczyć w wydarzeniu %s" #: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 -#: ../../include/network.php:1767 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1490 +#: ../../include/network.php:1767 ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1490 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1939 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2147 msgid "ActivityPub" @@ -9999,13 +9784,11 @@ msgstr "wydawca" msgid "Unable to verify channel signature" msgstr "Nie można zweryfikować podpisu kanału" -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:33 +#: ../../Zotlabs/Lib/PermissionDescription.php:34 ../../include/acl_selectors.php:33 msgid "Visible to your default audience" msgstr "Widoczne dla domyślnych odbiorców" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:136 +#: ../../Zotlabs/Lib/PermissionDescription.php:107 ../../include/acl_selectors.php:136 msgid "Only me" msgstr "Tylko ja" @@ -10039,32 +9822,27 @@ msgid "Any connections including those who haven't yet been approved" msgstr "Wszelkie połączenia, w tym te, które nie zostały jeszcze zatwierdzone" #: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and posts." -msgstr "" -"To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów." +msgid "This is your default setting for the audience of your normal stream, and posts." +msgstr "To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów." #: ../../Zotlabs/Lib/PermissionDescription.php:151 msgid "This is your default setting for who can view your default channel profile" msgstr "" -"To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny " -"profil kanału" +"To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny profil " +"kanału" #: ../../Zotlabs/Lib/PermissionDescription.php:152 msgid "This is your default setting for who can view your connections" -msgstr "" -"To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia" +msgstr "To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia" #: ../../Zotlabs/Lib/PermissionDescription.php:153 msgid "This is your default setting for who can view your file storage and photos" msgstr "" -"Jest to domyślne ustawienie określające, kto może przeglądać magazyn plików i " -"zdjęć" +"Jest to domyślne ustawienie określające, kto może przeglądać magazyn plików i zdjęć" #: ../../Zotlabs/Lib/PermissionDescription.php:154 msgid "This is your default setting for the audience of your webpages" -msgstr "" -"To jest domyślne ustawienie dotyczące odbiorców Twoich stron internetowych" +msgstr "To jest domyślne ustawienie dotyczące odbiorców Twoich stron internetowych" #: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 #: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:115 @@ -10199,10 +9977,9 @@ msgstr "Czaty dodane do zakładek" msgid "photo/image" msgstr "zdjęcie/obraz" -#: ../../Zotlabs/Widget/Forums.php:100 -#: ../../Zotlabs/Widget/Activity_filter.php:123 -#: ../../Zotlabs/Widget/Notifications.php:139 -#: ../../Zotlabs/Widget/Notifications.php:140 ../../include/acl_selectors.php:125 +#: ../../Zotlabs/Widget/Forums.php:100 ../../Zotlabs/Widget/Activity_filter.php:123 +#: ../../Zotlabs/Widget/Notifications.php:139 ../../Zotlabs/Widget/Notifications.php:140 +#: ../../include/acl_selectors.php:125 msgid "Forums" msgstr "Fora" @@ -10446,22 +10223,17 @@ msgstr "Powiadomienia o nowej aktywności sieciowej" msgid "View your network activity" msgstr "Wyświetl swoją aktywność w sieci" -#: ../../Zotlabs/Widget/Notifications.php:23 -#: ../../Zotlabs/Widget/Notifications.php:62 +#: ../../Zotlabs/Widget/Notifications.php:23 ../../Zotlabs/Widget/Notifications.php:62 msgid "Mark all notifications read" msgstr "Oznacz wszystkie powiadomienia jako przeczytane" -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:65 -#: ../../Zotlabs/Widget/Notifications.php:172 +#: ../../Zotlabs/Widget/Notifications.php:26 ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:65 ../../Zotlabs/Widget/Notifications.php:172 msgid "Show new posts only" msgstr "Pokaż tylko nowe wpisy" -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:47 -#: ../../Zotlabs/Widget/Notifications.php:66 -#: ../../Zotlabs/Widget/Notifications.php:142 +#: ../../Zotlabs/Widget/Notifications.php:27 ../../Zotlabs/Widget/Notifications.php:47 +#: ../../Zotlabs/Widget/Notifications.php:66 ../../Zotlabs/Widget/Notifications.php:142 #: ../../Zotlabs/Widget/Notifications.php:173 msgid "Filter by name or address" msgstr "Filtruj według nazwy lub adresu" @@ -10479,8 +10251,7 @@ msgstr "Powiadomienia o nowej aktywności domowej" msgid "View your home activity" msgstr "Wyświetl swoją aktywność domową" -#: ../../Zotlabs/Widget/Notifications.php:43 -#: ../../Zotlabs/Widget/Notifications.php:169 +#: ../../Zotlabs/Widget/Notifications.php:43 ../../Zotlabs/Widget/Notifications.php:169 msgid "Mark all notifications seen" msgstr "Oznacz wszystkie powiadomienia jako oglądnięte" @@ -10544,8 +10315,7 @@ msgstr "Nowe pliki" msgid "New Files Notifications" msgstr "Powiadomienia o nowych plikach" -#: ../../Zotlabs/Widget/Notifications.php:124 -#: ../../Zotlabs/Widget/Notifications.php:125 +#: ../../Zotlabs/Widget/Notifications.php:124 ../../Zotlabs/Widget/Notifications.php:125 msgid "Notices" msgstr "Powiadomienia" @@ -10742,12 +10512,12 @@ msgstr "Wyświetl wszystkie %d popularne połączenia" #: ../../include/conversation.php:183 #, php-format msgid "likes %1$s's %2$s" -msgstr "polubił %2$s %1$s" +msgstr "ocenił pozytywnie %2$s %1$s" #: ../../include/conversation.php:186 #, php-format msgid "doesn't like %1$s's %2$s" -msgstr "nie polubił %1$s %2$s" +msgstr "ocenił negatywnie %1$s %2$s" #: ../../include/conversation.php:226 ../../include/conversation.php:228 #, php-format @@ -11090,14 +10860,12 @@ msgid "Change your profile photo" msgstr "Zmień swoje zdjęcie profilowe" #: ../../include/channel.php:1748 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 -#: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:87 +#: ../../include/selectors.php:77 ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:87 msgid "Female" msgstr "Kobieta" #: ../../include/channel.php:1750 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 -#: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:85 +#: ../../include/selectors.php:77 ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:85 msgid "Male" msgstr "Mężczyzna" @@ -11115,7 +10883,7 @@ msgstr "Nie określono" #: ../../include/channel.php:1798 msgid "Like this channel" -msgstr "Polub ten kanał" +msgstr "Oceń pozytywnie ten kanał" #: ../../include/channel.php:1822 msgid "j F, Y" @@ -11156,11 +10924,11 @@ msgstr "Hobby/Zainteresowania:" #: ../../include/channel.php:1873 msgid "Likes:" -msgstr "Polubień:" +msgstr "Ocen pozytywnych:" #: ../../include/channel.php:1875 msgid "Dislikes:" -msgstr "Niepolubień:" +msgstr "Ocen negatywnych:" #: ../../include/channel.php:1877 msgid "Contact information and Social Networks:" @@ -11248,8 +11016,7 @@ msgstr "Filtrowanie połączeń" #: ../../include/features.php:138 msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" -"Filtruj przychodzące wpisy z połączeń, na podstawie słów kluczowych lub treści" +msgstr "Filtruj przychodzące wpisy z połączeń, na podstawie słów kluczowych lub treści" #: ../../include/features.php:146 msgid "Conversation" @@ -11313,11 +11080,11 @@ msgstr "Duże zdjęcia" #: ../../include/features.php:219 msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) " +"photo thumbnails" msgstr "" -"Możliwość zamieszczania dużych miniatur zdjęć (1024px) we wpisach. Jeśli nie " -"jest to włączone, można używać tylko małych miniatur (640 px)" +"Możliwość zamieszczania dużych miniatur zdjęć (1024px) we wpisach. Jeśli nie jest to " +"włączone, można używać tylko małych miniatur (640 px)" #: ../../include/features.php:226 msgid "Even More Encryption" @@ -11326,8 +11093,8 @@ msgstr "Jeszcze więcej szyfrowania" #: ../../include/features.php:227 msgid "Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -"Zezwalaj na opcjonalne pełne (e2e) szyfrowanie treści za pomocą wspólnego " -"tajnego klucza" +"Zezwalaj na opcjonalne pełne (e2e) szyfrowanie treści za pomocą wspólnego tajnego " +"klucza" #: ../../include/features.php:234 msgid "Disable Comments" @@ -11359,11 +11126,11 @@ msgstr "Pomijaj zduplikowane wpisy i komentarze" #: ../../include/features.php:259 msgid "" -"Prevent posts with identical content to be published with less than two minutes " -"in between submissions." +"Prevent posts with identical content to be published with less than two minutes in " +"between submissions." msgstr "" -"Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie " -"minuty między przesłaniami." +"Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie minuty " +"między przesłaniami." #: ../../include/features.php:266 msgid "Auto-save drafts of posts and comments" @@ -11371,8 +11138,8 @@ msgstr "Automatyczne zapisywanie wersji roboczych wpisów i komentarzy" #: ../../include/features.php:267 msgid "" -"Automatically saves post and comment drafts in local browser storage to help " -"prevent accidental loss of compositions" +"Automatically saves post and comment drafts in local browser storage to help prevent " +"accidental loss of compositions" msgstr "" "Automatycznie zapisuje wersje robocze wpisów i komentarzy w lokalnej pamięci " "przeglądarki, aby zapobiec przypadkowej utracie kompozycji" @@ -11422,8 +11189,8 @@ msgid "" "Ability to order the stream by last post date, last comment date or unthreaded " "activities" msgstr "" -"Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty " -"ostatniego komentarza lub nieprzeczytanych aktywności" +"Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty ostatniego " +"komentarza lub nieprzeczytanych aktywności" #: ../../include/features.php:334 msgid "Contact Filter" @@ -11455,8 +11222,7 @@ msgstr "Lokalizacja zdjęcia" #: ../../include/features.php:373 msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" -"Jeśli dane lokalizacji są dostępne na przesłanych zdjęciach, połącz je z mapą." +msgstr "Jeśli dane lokalizacji są dostępne na przesłanych zdjęciach, połącz je z mapą." #: ../../include/features.php:386 msgid "Advanced Profiles" @@ -11492,8 +11258,7 @@ msgstr "Wylogowano." #: ../../include/auth.php:294 msgid "Email validation is incomplete. Please check your email." -msgstr "" -"Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres email." +msgstr "Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres email." #: ../../include/auth.php:310 msgid "Failed authentication" @@ -11930,8 +11695,8 @@ msgstr "Własny wybór" #: ../../include/acl_selectors.php:146 msgid "" -"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit " -"the scope of \"Allow\"." +"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit the " +"scope of \"Allow\"." msgstr "" "Wybierz \"Zezwól\", aby zezwolić na przeglądanie. \"Nie zezwalaj\" umożliwia " "zastąpienie i ograniczenie zakresu \"Zezwalaj\"." @@ -11946,8 +11711,8 @@ msgid "" "Post permissions %s cannot be changed %s after a post is shared.
These " "permissions set who is allowed to view the post." msgstr "" -"Uprawnienia do publikowania %s nie mogą być zmieniane %s po udostępnieniu " -"wpisu.
Te uprawnienia określają, kto może oglądać wpis." +"Uprawnienia do publikowania %s nie mogą być zmieniane %s po udostępnieniu wpisu.
Te uprawnienia określają, kto może oglądać wpis." #: ../../include/opengraph.php:56 #, php-format @@ -11991,8 +11756,7 @@ msgid "Unable to import a removed channel." msgstr "Nie można zaimportować usuniętego kanału." #: ../../include/import.php:55 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +msgid "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" "Nie można utworzyć zduplikowanego identyfikatora kanału w tym systemie. Import " "nieudany." @@ -12292,11 +12056,9 @@ msgstr "świetne" #: ../../include/js_strings.php:30 msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" +"Your chosen nickname was either already taken or not valid. Please use our suggestion (" msgstr "" -"Twój wybrany pseudonim jest już zajęty lub nieważny. Skorzystaj z naszej " -"prpozycji (" +"Twój wybrany pseudonim jest już zajęty lub nieważny. Skorzystaj z naszej prpozycji (" #: ../../include/js_strings.php:31 msgid ") or enter a new one." @@ -12531,11 +12293,11 @@ msgstr "Adres e-mail jest nieprawidłowy" #: ../../include/security.php:607 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." +"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 "" -"Token bezpieczeństwa formularza był nieprawidłowy. Prawdopodobnie stało się " -"tak, ponieważ formularz był otwarty zbyt długo (> 3 godziny) przed wysłaniem." +"Token bezpieczeństwa formularza był nieprawidłowy. Prawdopodobnie stało się tak, " +"ponieważ formularz był otwarty zbyt długo (> 3 godziny) przed wysłaniem." #: ../../include/selectors.php:18 msgid "Profile to assign new connections" @@ -12695,7 +12457,7 @@ msgstr "Przyjaciele/Korzyści" #: ../../include/selectors.php:134 msgid "Casual" -msgstr "Przygodnie" +msgstr "Nieformalne" #: ../../include/selectors.php:134 msgid "Engaged" @@ -12827,11 +12589,11 @@ msgstr "Podany adres e-mail jest już zarejestrowany w tej witrynie" #: ../../include/account.php:55 msgid "" -"There is a pending registration for this address - click \"Register\" to " -"continue verification" +"There is a pending registration for this address - click \"Register\" to continue " +"verification" msgstr "" -"Oczekuje się na rejestrację tego adresu - kliknij „Zarejestruj się”, aby " -"kontynuować weryfikację" +"Oczekuje się na rejestrację tego adresu - kliknij „Zarejestruj się”, aby kontynuować " +"weryfikację" #: ../../include/account.php:94 msgid "An invitation is required." @@ -12913,8 +12675,7 @@ msgstr "Pomoc:" msgid "Not Found" msgstr "Nie znaleziono" -#: ../../include/attach.php:273 ../../include/attach.php:324 -#: ../../include/attach.php:419 +#: ../../include/attach.php:273 ../../include/attach.php:324 ../../include/attach.php:419 msgid "Item was not found." msgstr "Nie znaleziono elementu." @@ -12947,8 +12708,8 @@ msgstr "Osiągnięty został limit %1$.0f MB miejsca na załączniki." #: ../../include/attach.php:1004 msgid "File upload failed. Possible system limit or action terminated." msgstr "" -"Przesyłanie pliku nie powiodło się. Możliwe ograniczenie systemowe lub " -"działanie zakończone." +"Przesyłanie pliku nie powiodło się. Możliwe ograniczenie systemowe lub działanie " +"zakończone." #: ../../include/attach.php:1033 msgid "Stored file could not be verified. Upload failed." @@ -13287,11 +13048,11 @@ msgstr "Zainstaluj element %1$s %2$s" #: ../../include/bbcode.php:338 #, php-format msgid "" -"This post contains an installable %s element, however you lack permissions to " -"install it on this site." +"This post contains an installable %s element, however you lack permissions to install " +"it on this site." msgstr "" -"Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz " -"uprawnień do zainstalowania go w tym portalu." +"Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz uprawnień do " +"zainstalowania go w tym portalu." #: ../../include/bbcode.php:551 msgid "card" @@ -13328,11 +13089,11 @@ msgstr "%1$s obserwujesz teraz %2$s" #: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:16 msgid "" -"The GNU-Social protocol does not support location independence. Connections you " -"make within that network may be unreachable from alternate channel locations." +"The GNU-Social protocol does not support location independence. Connections you make " +"within that network may be unreachable from alternate channel locations." msgstr "" -"Protokół GNU-Social nie obsługuje niezależności od lokalizacji. Połączenia " -"nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." +"Protokół GNU-Social nie obsługuje niezależności od lokalizacji. Połączenia nawiązane w " +"tej sieci mogą być niedostępne z innych lokalizacji kanałów." #: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:22 msgid "GNU-Social Protocol App" @@ -13425,7 +13186,7 @@ msgstr "Link:" #: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:70 msgid "Like us on Hubzilla" -msgstr "Polub nas na Hubzilli" +msgstr "Oceń nas pozytywnie na Hubzilli" #: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:72 msgid "Embed:" @@ -13531,22 +13292,21 @@ msgstr "zazdrosny" #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:85 msgid "" -"This website is tracked using the Piwik " -"analytics tool." +"This website is tracked using the Piwik analytics " +"tool." msgstr "" -"Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik." +"Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik." #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:88 #, php-format msgid "" -"If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site (opt-" -"out)." +"If you do not want that your visits are logged this way you can set a " +"cookie to prevent Piwik from tracking further visits of the site (opt-out)." msgstr "" -"Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie " -"dalszych wizyt na stronie (rezygnacja)." +"Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, " +"możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie dalszych wizyt na stronie " +" (rezygnacja)." #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:96 msgid "Piwik Base URL" @@ -13554,11 +13314,10 @@ msgstr "Bazowy adres URL Piwik" #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:96 msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" +"Absolute path to your Piwik installation. (without protocol (http/s), with trailing " +"slash)" msgstr "" -"Absolutna ścieżka do instalacji Piwik (bez schematu (http/s), z końcowym " -"ukośnikiem)" +"Absolutna ścieżka do instalacji Piwik (bez schematu (http/s), z końcowym ukośnikiem)" #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:97 msgid "Site ID" @@ -13617,8 +13376,8 @@ msgstr "Minimalna reputacja, zanim członek będzie mógł moderować inne wpisy #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:122 msgid "" -"Max ratio of moderator's reputation that can be added to/deducted from " -"reputation of person being moderated" +"Max ratio of moderator's reputation that can be added to/deducted from reputation of " +"person being moderated" msgstr "" "Maksymalny współczynnik reputacji moderatora, który można dodać do reputacji " "moderowanej osoby lub od niej odjąć" @@ -13636,16 +13395,16 @@ msgid "" "Reputation automatically recovers at this rate per hour until it reaches " "minimum_to_post" msgstr "" -"Reputacja automatycznie odświeżana jest w tym tempie co godzinę, dopóki nie " -"osiągnie minimum_to_post" +"Reputacja automatycznie odświeżana jest w tym tempie co godzinę, dopóki nie osiągnie " +"minimum_to_post" #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:126 msgid "" -"When minimum_to_moderate > reputation > minimum_to_post reputation recovers at " -"this rate per hour" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this " +"rate per hour" msgstr "" -"Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na " -"jest z taką szybkością na godzinę" +"Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na jest z " +"taką szybkością na godzinę" #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:140 msgid "Community Moderation Settings" @@ -13689,8 +13448,8 @@ msgid "" "If checked, the Rendezvous database tables will be deleted when the plugin is " "uninstalled." msgstr "" -"Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie tabele " -"z bazy danych Rendezvous." +"Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie tabele z bazy " +"danych Rendezvous." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 msgid "Mapbox Access Token" @@ -13698,11 +13457,11 @@ msgstr "Token dostępu Mapbox" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles from " -"Mapbox instead of the default OpenStreetMap tile server." +"If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox " +"instead of the default OpenStreetMap tile server." msgstr "" -"Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania " -"fragmentów mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap." +"Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania fragmentów " +"mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:162 msgid "Rendezvous" @@ -13710,13 +13469,13 @@ msgstr "Rendezvous" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:167 msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." +"This identity has been deleted by another member due to inactivity. Please press the " +"\"New identity\" button or refresh the page to register a new identity. You may use " +"the same name." msgstr "" -"Ta tożsamość została usunięta przez innego członka z powodu braku aktywności. " -"Proszę nacisnąć przycisk \"Nowa tożsamość\" lub odświeżyć stronę, aby " -"zarejestrować nową tożsamość. Możesz użyć tej samej nazwy." +"Ta tożsamość została usunięta przez innego członka z powodu braku aktywności. Proszę " +"nacisnąć przycisk \"Nowa tożsamość\" lub odświeżyć stronę, aby zarejestrować nową " +"tożsamość. Możesz użyć tej samej nazwy." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:168 msgid "Welcome to Rendezvous!" @@ -13724,14 +13483,14 @@ msgstr "Witamy w Rendezvous!" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:169 msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a red " -"dot will appear and others will be able to see you on the map." +"Enter your name to join this rendezvous. To begin sharing your location with the other " +"members, tap the GPS control. When your location is discovered, a red dot will appear " +"and others will be able to see you on the map." msgstr "" "Wpisz swoje imię i nazwisko, aby dołączyć do tego spotkania. W celu rozpoczęcia " -"udostępniania swojej lokalizacji innym członkom, dotknij elementu sterującego " -"GPS. Gdy Twoja lokalizacja zostanie odkryta, pojawi się czerwona kropka i inni " -"będą mogli Cię zobaczyć na mapie." +"udostępniania swojej lokalizacji innym członkom, dotknij elementu sterującego GPS. Gdy " +"Twoja lokalizacja zostanie odkryta, pojawi się czerwona kropka i inni będą mogli Cię " +"zobaczyć na mapie." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:171 msgid "Let's meet here" @@ -13763,12 +13522,11 @@ msgstr "Edytuj alert zbliżeniowy" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 msgid "" -"A proximity alert will be issued when this member is within a certain radius of " -"you.

Enter a radius in meters (0 to disable):" +"A proximity alert will be issued when this member is within a certain radius of you." +"

Enter a radius in meters (0 to disable):" msgstr "" -"Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w " -"określonym promieniu od Ciebie.

Wprowadź promień w metrach (0, aby " -"wyłączyć):" +"Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w określonym " +"promieniu od Ciebie.

Wprowadź promień w metrach (0, aby wyłączyć):" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:185 @@ -13782,12 +13540,11 @@ msgstr "Odległość ostrzeżenia o bliskości (metry)" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:182 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:184 msgid "" -"A proximity alert will be issued when you are within a certain radius of the " -"marker location.

Enter a radius in meters (0 to disable):" +"A proximity alert will be issued when you are within a certain radius of the marker " +"location.

Enter a radius in meters (0 to disable):" msgstr "" -"Alert zbliżeniowy zostanie wygenerowany, gdy znajdziesz się w określonym " -"promieniu od lokalizacji znacznika.

Wprowadź promień w metrach (0, " -"aby wyłączyć):" +"Alert zbliżeniowy zostanie wygenerowany, gdy znajdziesz się w określonym promieniu od " +"lokalizacji znacznika.

Wprowadź promień w metrach (0, aby wyłączyć):" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:183 msgid "Marker proximity alert" @@ -13798,11 +13555,9 @@ msgid "Reminder note" msgstr "Notatka przypominająca" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." +msgid "Enter a note to be displayed when you are within the specified proximity..." msgstr "" -"Wprowadź notatkę, która będzie wyświetlana, gdy będziesz w określonej " -"odległości ..." +"Wprowadź notatkę, która będzie wyświetlana, gdy będziesz w określonej odległości ..." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:199 msgid "Add new rendezvous" @@ -13810,15 +13565,14 @@ msgstr "Dodaj nowe spotkanie" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:200 msgid "" -"Create a new rendezvous and share the access link with those you wish to invite " -"to the group. Those who open the link become members of the rendezvous. They " -"can view other member locations, add markers to the map, or share their own " -"locations with the group." +"Create a new rendezvous and share the access link with those you wish to invite to the " +"group. Those who open the link become members of the rendezvous. They can view other " +"member locations, add markers to the map, or share their own locations with the group." msgstr "" -"Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić " -"do grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą " -"wyświetlać lokalizacje innych członków, dodawać znaczniki do mapy lub " -"udostępniać własne lokalizacje grupie." +"Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić do " +"grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą wyświetlać " +"lokalizacje innych członków, dodawać znaczniki do mapy lub udostępniać własne " +"lokalizacje grupie." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:232 msgid "You have no rendezvous. Press the button above to create a rendezvous!" @@ -13905,8 +13659,7 @@ msgstr "Weryfikacja dwuetapowa TOTP" #: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:24 msgid "Enter the 2-step verification generated by your authenticator app:" -msgstr "" -"Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację uwierzytelniającą:" +msgstr "Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację uwierzytelniającą:" #: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:25 msgid "Success!" @@ -13945,8 +13698,7 @@ msgid "" "with your preferred authenticator app." msgstr "" "Zapisz go gdzieś na wypadek zgubienia lub wymiany urządzenia mobilnego.\n" -"Użyj urządzenia mobilnego, aby zeskanować poniższy kod QR i zarejestrować tą " -"witrynę\n" +"Użyj urządzenia mobilnego, aby zeskanować poniższy kod QR i zarejestrować tą witrynę\n" "w preferowanej aplikacji uwierzytelniającej." #: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:99 @@ -14005,8 +13757,8 @@ msgstr "Konto zostało dla Ciebie utworzone." #: ../../extend/addon/hubzilla-addons/ldapauth/ldapauth.php:77 msgid "Authentication successful but rejected: account creation is disabled." msgstr "" -"Uwierzytelnianie przebiegło pomyślne, ale zostało odrzucone: tworzenie konta " -"jest wyłączone." +"Uwierzytelnianie przebiegło pomyślne, ale zostało odrzucone: tworzenie konta jest " +"wyłączone." #: ../../extend/addon/hubzilla-addons/cart/cart.php:252 msgid "DB Cleanup Failure" @@ -14183,8 +13935,7 @@ msgstr "Włącz moduł zarządzania subskrypcjami" #: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:223 msgid "Cannot include subscription items with different terms in the same order." msgstr "" -"Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej " -"kolejności." +"Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej kolejności." #: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:372 msgid "Select Subscription to Edit" @@ -14259,11 +14010,11 @@ msgstr "Płatności za pomocą przycisku PayPal nie są włączone." #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:282 #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:270 msgid "" -"Paypal button payments are not properly configured. Please choose another " -"payment option." +"Paypal button payments are not properly configured. Please choose another payment " +"option." msgstr "" -"Płatności za pomocą przycisku PayPal nie są poprawnie skonfigurowane. Wybierz " -"inną opcję płatności." +"Płatności za pomocą przycisku PayPal nie są poprawnie skonfigurowane. Wybierz inną " +"opcję płatności." #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:85 msgid "Enable Paypal Button Module" @@ -14310,11 +14061,11 @@ msgstr "Podstawowa waluta sprzedawcy" #: ../../extend/addon/hubzilla-addons/openid/openid.php:49 msgid "" -"We encountered a problem while logging in with the OpenID you provided. Please " -"check the correct spelling of the ID." +"We encountered a problem while logging in with the OpenID you provided. Please check " +"the correct spelling of the ID." msgstr "" -"Napotkaliśmy problem podczas logowania za pomocą podanego przez Ciebie " -"identyfikatora OpenID. Sprawdź poprawną pisownię identyfikatora." +"Napotkaliśmy problem podczas logowania za pomocą podanego przez Ciebie identyfikatora " +"OpenID. Sprawdź poprawną pisownię identyfikatora." #: ../../extend/addon/hubzilla-addons/openid/openid.php:49 msgid "The error message was:" @@ -14383,8 +14134,7 @@ msgstr "Import z magazynu plików Hubzilla" #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:82 msgid "This will import all your cloud files from another server." msgstr "" -"Spowoduje to zaimportowanie wszystkich plików w chmurze z innego portalu " -"Hubzilla." +"Spowoduje to zaimportowanie wszystkich plików w chmurze z innego portalu Hubzilla." #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:83 msgid "Hubzilla Server base URL" @@ -14406,11 +14156,11 @@ msgstr "Zaktualizowano ustawienia protokołu Diaspora." #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:52 msgid "" -"The diaspora protocol does not support location independence. Connections you " -"make within that network may be unreachable from alternate channel locations." +"The diaspora protocol does not support location independence. Connections you make " +"within that network may be unreachable from alternate channel locations." msgstr "" -"Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia nawiązane " -"w tej sieci mogą być niedostępne z innych lokalizacji kanałów." +"Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia nawiązane w tej " +"sieci mogą być niedostępne z innych lokalizacji kanałów." #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:58 msgid "Diaspora Protocol App" @@ -14418,16 +14168,15 @@ msgstr "Aplikacja Protokół Diaspora" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 msgid "Allow any Diaspora member to comment or like your public posts" -msgstr "" -"Umożliwia członkom Diaspory komentować lub aprobować Twoje publiczne wpisy" +msgstr "Umożliwia członkom Diaspory komentować lub aprobować Twoje publiczne wpisy" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 msgid "" -"If this setting is disabled only your contacts will be able to comment or like " -"your public posts" +"If this setting is disabled only your contacts will be able to comment or like your " +"public posts" msgstr "" -"Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły komentować " -"lub aprobować Twoje publiczne wpisy" +"Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły komentować lub " +"aprobować Twoje publiczne wpisy" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:81 msgid "Prevent your hashtags from being redirected to other sites" @@ -14452,11 +14201,10 @@ msgstr "W pliku importu nie znaleziono nazwy użytkownika." #: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1599 #, php-format msgid "%1$s dislikes %2$s's %3$s" -msgstr "%1$s niepolubień %2$s %3$s" +msgstr "%1$s ocen negatywnych %2$s %3$s" #: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:70 -msgid "" -"Please install the statistics addon to be able to configure a diaspora relay" +msgid "Please install the statistics addon to be able to configure a diaspora relay" msgstr "Zainstaluj dodatek do statystyk, aby móc skonfigurować konektor Diaspory" #: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:80 @@ -14525,13 +14273,12 @@ msgstr "Znane tagi" #: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:119 msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," +"Please note Diaspora and Friendica statistics are merely those **this directory** is " +"aware of, and not all those known in the network. This also applies to chatrooms," msgstr "" "Proszę mieć na uwadze, że statystyki Diaspory i Friendica to tylko te,które są " -"widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to " -"również czatów," +"widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to również " +"czatów," #: ../../extend/addon/hubzilla-addons/upload_limits/upload_limits.php:25 msgid "Show Upload Limits" @@ -14594,11 +14341,11 @@ msgstr "Adres URL serwera kafelków rastrowych" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:156 msgid "" -"A list of public tile servers" +"A list of public " +"tile servers" msgstr "" -"Lista publicznych serwerów kafelków" +"Lista publicznych " +"serwerów kafelków" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:157 msgid "Nominatim (reverse geocoding) Server URL" @@ -14606,8 +14353,8 @@ msgstr "Adres URL serwera Nominatim (odwrotne geokodowanie)" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:157 msgid "" -"A list of Nominatim servers" +"A list of Nominatim servers" msgstr "" "Lista serwerów Nominatim" @@ -14619,8 +14366,8 @@ msgstr "Powiększenie domyślne" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:158 msgid "The default zoom level. (1:world, 18:highest, also depends on tile server)" msgstr "" -"Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od " -"serwera kafelków)" +"Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od serwera " +"kafelków)" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:159 msgid "Include marker on map" @@ -14735,13 +14482,13 @@ msgstr "Użyj centralnej bazy użytkowników" #: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:45 msgid "" -"If enabled, members will automatically login to an ejabberd server that has to " -"be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." +"If enabled, members will automatically login to an ejabberd server that has to be " +"installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" " +"script." msgstr "" -"Jeśli jest włączone, członkowie będą automatycznie logować się do serwera " -"ejabberd, który musi być zainstalowany na tym komputerze z zsynchronizowanymi " -"danymi uwierzytelniającymi za pośrednictwem skryptu „auth_ejabberd.php”." +"Jeśli jest włączone, członkowie będą automatycznie logować się do serwera ejabberd, " +"który musi być zainstalowany na tym komputerze z zsynchronizowanymi danymi " +"uwierzytelniającymi za pośrednictwem skryptu „auth_ejabberd.php”." #: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:23 msgid "XMPP settings updated." @@ -14797,11 +14544,9 @@ msgid "Random Planet App" msgstr "Aplikacja Losowa Planeta" #: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:25 -msgid "" -"Set a random planet from the Star Wars Empire as your location when posting" +msgid "Set a random planet from the Star Wars Empire as your location when posting" msgstr "" -"Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium Gwiezdnych " -"Wojen" +"Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium Gwiezdnych Wojen" #: ../../extend/addon/hubzilla-addons/nsfw/nsfw.php:152 msgid "Possible adult content" @@ -14827,19 +14572,18 @@ msgstr "Zwija treść zawierającą określone słowa" #: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:44 msgid "" "This app looks in posts for the words/text you specify below, and collapses any " -"content containing those keywords so it is not displayed at inappropriate " -"times, such as sexual innuendo that may be improper in a work setting. It is " -"polite and recommended to tag any content containing nudity with #NSFW. This " -"filter can also match any other word/text you specify, and can thereby be used " -"as a general purpose content filter." -msgstr "" -"Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie " -"treści zawierające te słowa kluczowe, aby nie były wyświetlane w " -"nieodpowiednich momentach, na przykład, insynuacje seksualne, które mogą być " -"niewłaściwe w miejscu pracy. Grzecznie jest i zaleca się, oznaczanie wszelkich " -"treści zawierających nagość tagiem #NSFW. Ten filtr może również pasować do " -"dowolnego innego określonego słowa lub tekstu, dzięki czemu może być używany " -"jako filtr treści ogólnego przeznaczenia." +"content containing those keywords so it is not displayed at inappropriate times, such " +"as sexual innuendo that may be improper in a work setting. It is polite and " +"recommended to tag any content containing nudity with #NSFW. This filter can also " +"match any other word/text you specify, and can thereby be used as a general purpose " +"content filter." +msgstr "" +"Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie treści " +"zawierające te słowa kluczowe, aby nie były wyświetlane w nieodpowiednich momentach, " +"na przykład, insynuacje seksualne, które mogą być niewłaściwe w miejscu pracy. " +"Grzecznie jest i zaleca się, oznaczanie wszelkich treści zawierających nagość tagiem " +"#NSFW. Ten filtr może również pasować do dowolnego innego określonego słowa lub " +"tekstu, dzięki czemu może być używany jako filtr treści ogólnego przeznaczenia." #: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:49 msgid "Comma separated list of keywords to hide" @@ -14871,24 +14615,24 @@ msgstr "Nowa gra z handicapem" #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:61 msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that it " -"is played on multiple levels simultaneously. " +"Three dimensional tic-tac-toe is just like the traditional game except that it is " +"played on multiple levels simultaneously. " msgstr "" -"Trójwymiarowa gra w kółko i krzyżyk jest podobna do tradycyjnej gry, z tym " -"wyjątkiem, że gra się w nią na wielu poziomach jednocześnie. " +"Trójwymiarowa gra w kółko i krzyżyk jest podobna do tradycyjnej gry, z tym wyjątkiem, " +"że gra się w nią na wielu poziomach jednocześnie. " #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:62 msgid "" -"In this case there are three levels. You win by getting three in a row on any " -"level, as well as up, down, and diagonally across the different levels." +"In this case there are three levels. You win by getting three in a row on any level, " +"as well as up, down, and diagonally across the different levels." msgstr "" "W tym przypadku są trzy poziomy. Wygrywasz, zdobywając trzy z rzędu na dowolnym " "poziomie, a także w górę, w dół i po przekątnej na różnych poziomach." #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:64 msgid "" -"The handicap game disables the center position on the middle level because the " -"player claiming this square often has an unfair advantage." +"The handicap game disables the center position on the middle level because the player " +"claiming this square often has an unfair advantage." msgstr "" "Gra z handicapem wyłącza środkową pozycję na środkowym poziomie, ponieważ gracz " "zajmujący to pole często ma nieuczciwą przewagę." @@ -14920,8 +14664,8 @@ msgstr "Zapisano ustawienia pamięci podręcznej zdjęć." #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:36 msgid "" -"Photo Cache addon saves a copy of images from external sites locally to " -"increase your anonymity in the web." +"Photo Cache addon saves a copy of images from external sites locally to increase your " +"anonymity in the web." msgstr "" "Dodatek Photo Cache zapisuje lokalnie kopie obrazów z zewnętrznych witryn, aby " "zwiększyć Twoją anonimowość w sieci." @@ -14937,8 +14681,7 @@ msgstr "Minimalny rozmiar zdjęcia do buforowania" #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:55 msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." msgstr "" -"W pikselach. Od 1 do 1024, 0 zostanie zastąpione domyślnymi ustawieniami " -"systemowymi." +"W pikselach. Od 1 do 1024, 0 zostanie zastąpione domyślnymi ustawieniami systemowymi." #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:64 msgid "Photo Cache" @@ -14996,8 +14739,7 @@ msgid "Flag Adult Photos" msgstr "Oznaczanie zdjęć dla dorosłych" #: ../../extend/addon/hubzilla-addons/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album view" +msgid "Provide photo edit option to hide inappropriate photos from default album view" msgstr "" "Dostarcza opcję edycji zdjęć, umożliwiającą ukrywanie nieodpowiednich zdjęć w " "domyślnym widoku albumu" @@ -15015,27 +14757,24 @@ msgid "Application name" msgstr "Nazwa aplikacji" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:61 -msgid "" -"Please contact your site administrator.
The provided API URL is not valid." +msgid "Please contact your site administrator.
The provided API URL is not valid." msgstr "" -"Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API " -"jest nieprawidłowy." +"Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API jest " +"nieprawidłowy." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:98 msgid "We could not contact the GNU social API with the Path you entered." -msgstr "" -"Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej ścieżce." +msgstr "Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej ścieżce." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:130 msgid "GNU social settings updated." msgstr "Ustawienia społecznościowe GNU zostały zaktualizowane." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:147 -msgid "" -"Relay public postings to a connected GNU social account (formerly StatusNet)" +msgid "Relay public postings to a connected GNU social account (formerly StatusNet)" msgstr "" -"Przekazywanie publicznych wpisów na połączone konto społecznościowe GNU " -"(dawniej StatusNet)" +"Przekazywanie publicznych wpisów na połączone konto społecznościowe GNU (dawniej " +"StatusNet)" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:181 msgid "Globally Available GNU social OAuthKeys" @@ -15043,14 +14782,13 @@ msgstr "Globalnie dostępne klucze OAuthKey społecznościowe GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:183 msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers available. " -"If you are using one of them, please use these credentials.
If not feel " -"free to connect to any other GNU social instance (see below)." +"There are preconfigured OAuth key pairs for some GNU social servers available. If you " +"are using one of them, please use these credentials.
If not feel free to connect " +"to any other GNU social instance (see below)." msgstr "" "Dostępne są wstępnie skonfigurowane pary kluczy OAuth dla niektórych serwerów " -"społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń. " -"
Jeśli nie możesz połączyć się z inną instancją społecznościową GNU " -"(patrz poniżej)." +"społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń.
" +"Jeśli nie możesz połączyć się z inną instancją społecznościową GNU (patrz poniżej)." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:198 msgid "Provide your own OAuth Credentials" @@ -15059,17 +14797,17 @@ msgstr "Podaj własne dane logowania OAuth" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:200 msgid "" "No consumer key pair for GNU social found. Register your Hubzilla Account as an " -"desktop client on your GNU social account, copy the consumer key pair here and " -"enter the API base root.
Before you register your own OAuth key pair ask " -"the administrator if there is already a key pair for this Hubzilla installation " -"at your favourite GNU social installation." -msgstr "" -"Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj " -"swoje konto Hubzilla jako klienta stacjonarnego na swoim koncie " -"społecznościowym GNU, skopiuj tutaj parę kluczy klienta i wprowadź podstawowy " -"katalog główny API.
Przed zarejestrowaniem własnej pary kluczy OAuth " -"zapytaj administratora, czy istnieje już para kluczy dla tej instalacji " -"Hubzilli w Twojej ulubionej instalacji społecznościowej GNU." +"desktop client on your GNU social account, copy the consumer key pair here and enter " +"the API base root.
Before you register your own OAuth key pair ask the " +"administrator if there is already a key pair for this Hubzilla installation at your " +"favourite GNU social installation." +msgstr "" +"Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj swoje konto " +"Hubzilla jako klienta stacjonarnego na swoim koncie społecznościowym GNU, skopiuj " +"tutaj parę kluczy klienta i wprowadź podstawowy katalog główny API.
Przed " +"zarejestrowaniem własnej pary kluczy OAuth zapytaj administratora, czy istnieje już " +"para kluczy dla tej instalacji Hubzilli w Twojej ulubionej instalacji społecznościowej " +"GNU." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:204 msgid "OAuth Consumer Key" @@ -15093,14 +14831,14 @@ msgstr "Nazwa aplikacji społecznościowej GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:239 msgid "" -"To connect to your GNU social account click the button below to get a security " -"code from GNU social which you have to copy into the input box below and submit " -"the form. Only your public posts will be posted to GNU social." +"To connect to your GNU social account click the button below to get a security code " +"from GNU social which you have to copy into the input box below and submit the form. " +"Only your public posts will be posted to GNU social." msgstr "" -"W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy " -"przycisk, aby uzyskać kod zabezpieczający z portalu społecznościowego GNU, " -"który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko " -"twoje publiczne wpisy będą publikowane w społecznościach GNU." +"W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy przycisk, " +"aby uzyskać kod zabezpieczający z portalu społecznościowego GNU, który musisz " +"skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko twoje " +"publiczne wpisy będą publikowane w społecznościach GNU." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:241 msgid "Log in with GNU social" @@ -15129,16 +14867,16 @@ msgstr "Obecnie połączony z: " #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:277 msgid "" -"Note: Due your privacy settings (Hide your profile details " -"from unknown viewers?) the link potentially included in public postings " -"relayed to GNU social will lead the visitor to a blank page informing the " -"visitor that the access to your profile has been restricted." +"Note: Due your privacy settings (Hide your profile details from " +"unknown viewers?) the link potentially included in public postings relayed to GNU " +"social will lead the visitor to a blank page informing the visitor that the access to " +"your profile has been restricted." msgstr "" "Uwaga: Ze względu na Twoje ustawienia prywatności, odnośnik " -"(Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), " -"ewentualnie zawarty w publicznych wpisach przekazywanych do społeczności GNU, " -"będzie kierował odwiedzającego na pustą stronę z informacją dla odwiedzającego, " -"że dostęp do Twojego profilu został ograniczony." +"(Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), ewentualnie " +"zawarty w publicznych wpisach przekazywanych do społeczności GNU, będzie kierował " +"odwiedzającego na pustą stronę z informacją dla odwiedzającego, że dostęp do Twojego " +"profilu został ograniczony." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 msgid "Post to GNU social by default" @@ -15146,8 +14884,8 @@ msgstr "Wysyłaj domyślnie do społeczności GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" +"If enabled your public postings will be posted to the associated GNU-social account by " +"default" msgstr "" "Jeśli ta opcja jest włączona, twoje publiczne wpisy będą domyślnie wysyłane na " "powiązane konto społecznościowe GNU" @@ -15171,12 +14909,11 @@ msgstr "Zaktualizowano ustawienia ActivityPub Protocol." #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:34 msgid "" -"The activitypub protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +"The activitypub protocol does not support location independence. Connections you make " +"within that network may be unreachable from alternate channel locations." msgstr "" -"Protokół AactivityPub nie obsługuje niezależności od lokalizacji. Połączenia " -"nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." +"Protokół AactivityPub nie obsługuje niezależności od lokalizacji. Połączenia nawiązane " +"w tej sieci mogą być niedostępne z innych lokalizacji kanałów." #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:40 msgid "Activitypub Protocol App" @@ -15188,11 +14925,11 @@ msgstr "Dostarcz do odbiorców ActivityPub w grupach prywatności" #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:50 msgid "" -"May result in a large number of mentions and expose all the members of your " -"privacy group" +"May result in a large number of mentions and expose all the members of your privacy " +"group" msgstr "" -"Może skutkować dużą liczbą wzmianek i ujawnieniem wszystkich członków Twojej " -"grupy prywatności" +"Może skutkować dużą liczbą wzmianek i ujawnieniem wszystkich członków Twojej grupy " +"prywatności" #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:54 msgid "Send multi-media HTML articles" @@ -15300,13 +15037,13 @@ msgstr "Informacje" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:143 msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing " -"was found at Libravatar." +"Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar " +"addon.
The Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." msgstr "" -"Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek " -"Libravatar lub ten dodatek Gravatar.
Dodatek Libravatar wykorzysta " -"Gravatara, jeśli nic nie zostanie znalezione w bibliotece Libravatara." +"Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek Libravatar lub " +"ten dodatek Gravatar.
Dodatek Libravatar wykorzysta Gravatara, jeśli nic nie " +"zostanie znalezione w bibliotece Libravatara." #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 msgid "Default avatar image" @@ -15315,8 +15052,8 @@ msgstr "Domyślny obraz awatara" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 msgid "Select default avatar image if none was found at Gravatar. See README" msgstr "" -"Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w Gravatarze. " -"Zobacz README" +"Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w Gravatarze. Zobacz " +"README" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:152 msgid "Rating of images" @@ -15355,12 +15092,10 @@ msgstr "Zaloguj się do Hubzilli za pomocą konta społecznościowego" #: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:207 msgid "Social Authentication using your social media account" -msgstr "" -"Uwierzytelnianie społecznościowe za pomocą konta w mediach społecznościowych" +msgstr "Uwierzytelnianie społecznościowe za pomocą konta w mediach społecznościowych" #: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:211 -msgid "" -"This app enables one or more social provider sign-in buttons on the login page." +msgid "This app enables one or more social provider sign-in buttons on the login page." msgstr "" "Ta aplikacja umożliwia korzystanie na stronie logowania z co najmniej jednego " "przycisku logowania dostawcy usług społecznościowych." @@ -15435,8 +15170,7 @@ msgstr "Import albumu fotograficznego Redmatrix" #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:130 msgid "This will import all your Redmatrix photo albums to this channel." msgstr "" -"Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do tego " -"kanału." +"Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do tego kanału." #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:131 #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:121 @@ -15482,25 +15216,23 @@ msgid "Relay public posts to Twitter" msgstr "Przekazuj publiczne wpisy na Twitter" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:103 -msgid "" -"No consumer key pair for Twitter found. Please contact your site administrator." +msgid "No consumer key pair for Twitter found. Please contact your site administrator." msgstr "" -"Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z " -"administratorem witryny." +"Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z administratorem " +"witryny." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:125 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not yet " -"connected your account to your Twitter account. To do so click the button below " -"to get a PIN from Twitter which you have to copy into the input box below and " -"submit the form. Only your public posts will be posted to " -"Twitter." +"connected your account to your Twitter account. To do so click the button below to get " +"a PIN from Twitter which you have to copy into the input box below and submit the " +"form. Only your public posts will be posted to Twitter." msgstr "" -"W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś " -"jeszcze swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy " -"przycisk, aby uzyskać kod PIN z Twittera, który należy skopiować do pola " -"wprowadzania poniżej i przesłać formularz. Na Twitterze będą publikowane tylko " -"Twoje publiczne wpisy." +"W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś jeszcze " +"swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy przycisk, aby " +"uzyskać kod PIN z Twittera, który należy skopiować do pola wprowadzania poniżej i " +"przesłać formularz. Na Twitterze będą publikowane tylko Twoje publiczne wpisy." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:127 msgid "Log in with Twitter" @@ -15512,16 +15244,16 @@ msgstr "Skopiuj tutaj PIN z Twittera" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:152 msgid "" -"Note: Due your privacy settings (Hide your profile details " -"from unknown viewers?) the link potentially included in public postings " -"relayed to Twitter will lead the visitor to a blank page informing the visitor " -"that the access to your profile has been restricted." +"Note: Due your privacy settings (Hide your profile details from " +"unknown viewers?) the link potentially included in public postings relayed to " +"Twitter will lead the visitor to a blank page informing the visitor that the access to " +"your profile has been restricted." msgstr "" " Uwaga: Ze względu na Twoje ustawienia prywatności (Ukryj " -"szczegóły swojego profilu przed nieznanymi widzami?) ten link, " -"potencjalnie zawarty w publicznych wpisach przekazywanych do Twittera, będzie " -"prowadził odwiedzającego do pustej strony informującej gościa, że dostęp do " -"Twojego profilu został ograniczony." +"szczegóły swojego profilu przed nieznanymi widzami?
) ten link, potencjalnie " +"zawarty w publicznych wpisach przekazywanych do Twittera, będzie prowadził " +"odwiedzającego do pustej strony informującej gościa, że dostęp do Twojego profilu " +"został ograniczony." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:157 msgid "Twitter post length" @@ -15537,11 +15269,11 @@ msgstr "Domyślnie wysyłaj publiczne wpisy na Twitter" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:162 msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" +"If enabled your public postings will be posted to the associated Twitter account by " +"default" msgstr "" -"Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie publikowane " -"na powiązanym koncie Twittera" +"Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie publikowane na " +"powiązanym koncie Twittera" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:181 msgid "Twitter Crosspost Connector" @@ -15563,74 +15295,66 @@ msgstr "Twórca projektu i kierownik techniczny" msgid "" "And the hundreds of other people and organisations who helped make the Hubzilla " "possible." -msgstr "" -"Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę." +msgstr "Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę." #: ../../extend/addon/hubzilla-addons/donate/donate.php:52 msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time " +"and expertise - and often paying out of pocket for services they share with others." msgstr "" -"Projekty Redmatrix i Hubzilla są realizowane głównie przez wolontariuszy, " -"którzy poświęcają swój czas i wiedzę i często płacą z własnej kieszeni za " -"usługi, którymi dzielą się z innymi." +"Projekty Redmatrix i Hubzilla są realizowane głównie przez wolontariuszy, którzy " +"poświęcają swój czas i wiedzę i często płacą z własnej kieszeni za usługi, którymi " +"dzielą się z innymi." #: ../../extend/addon/hubzilla-addons/donate/donate.php:53 msgid "" -"There is no corporate funding and no ads, and we do not collect and sell your " -"personal information. (We don't control your personal information - you " -"do.)" +"There is no corporate funding and no ads, and we do not collect and sell your personal " +"information. (We don't control your personal information - you do.)" msgstr "" -"Nie ma żadnych funduszy korporacyjnych ani reklam a my nie zbieramy i nie " -"sprzedajemy Twoich danych osobowych. (Nie kontrolujemy Twoich danych osobowych " -"- Ty tak )." +"Nie ma żadnych funduszy korporacyjnych ani reklam a my nie zbieramy i nie sprzedajemy " +"Twoich danych osobowych. (Nie kontrolujemy Twoich danych osobowych - Ty tak )." #: ../../extend/addon/hubzilla-addons/donate/donate.php:54 msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and " -"privacy." +"Help support our ground-breaking work in decentralisation, web identity, and privacy." msgstr "" -"Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, " -"tożsamości internetowej i prywatności." +"Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, tożsamości " +"internetowej i prywatności." #: ../../extend/addon/hubzilla-addons/donate/donate.php:56 msgid "" "Your donations keep servers and services running and also helps us to provide " "innovative new features and continued development." msgstr "" -"Twoje darowizny zapewniają nieprzerwane działanie serwerów i usług, a także " -"pomagają nam w zapewnianiu innowacyjnych nowych funkcji i ciągłym rozwoju." +"Twoje darowizny zapewniają nieprzerwane działanie serwerów i usług, a także pomagają " +"nam w zapewnianiu innowacyjnych nowych funkcji i ciągłym rozwoju." #: ../../extend/addon/hubzilla-addons/donate/donate.php:59 msgid "Donate" msgstr "Wspomóż" #: ../../extend/addon/hubzilla-addons/donate/donate.php:61 -msgid "" -"Choose a project, developer, or public hub to support with a one-time donation" +msgid "Choose a project, developer, or public hub to support with a one-time donation" msgstr "" -"Wybierz projekt, dewelopera lub publiczny portal, aby wesprzeć jednorazową " -"darowizną" +"Wybierz projekt, dewelopera lub publiczny portal, aby wesprzeć jednorazową darowizną" #: ../../extend/addon/hubzilla-addons/donate/donate.php:62 msgid "Donate Now" msgstr "Wpłać teraz" #: ../../extend/addon/hubzilla-addons/donate/donate.php:63 -msgid "" -"Or become a project sponsor (Hubzilla Project only)" +msgid "Or become a project sponsor (Hubzilla Project only)" msgstr "" -"lub zostań sponsorem projektu (tylko Projekt " -"Hubzilla)" +"lub zostań sponsorem projektu (tylko Projekt Hubzilla)" #: ../../extend/addon/hubzilla-addons/donate/donate.php:64 msgid "" -"Please indicate if you would like your first name or full name (or nothing) to " -"appear in our sponsor listing" +"Please indicate if you would like your first name or full name (or nothing) to appear " +"in our sponsor listing" msgstr "" -"Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej " -"liście sponsorów" +"Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej liście " +"sponsorów" #: ../../extend/addon/hubzilla-addons/donate/donate.php:65 msgid "Sponsor" @@ -15687,11 +15411,11 @@ msgstr "Aplikacja Bez Federalizacji" #: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:34 msgid "" -"Prevent posting from being federated to anybody. It will exist only on your " -"channel page." +"Prevent posting from being federated to anybody. It will exist only on your channel " +"page." msgstr "" -"Zapobiega federowaniu wiadomości do kogokolwiek. Będzie istnieć tylko na " -"stronie Twojego kanału." +"Zapobiega federowaniu wiadomości do kogokolwiek. Będzie istnieć tylko na stronie " +"Twojego kanału." #: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:42 msgid "Federate posts by default" @@ -15732,24 +15456,24 @@ msgstr "Zaimportowano pliki" #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:122 msgid "" -"This addon app copies existing content and file storage to a cloned/copied " -"channel. Once the app is installed, visit the newly installed app. This will " -"allow you to set the location of your original channel and an optional date " -"range of files/conversations to copy." +"This addon app copies existing content and file storage to a cloned/copied channel. " +"Once the app is installed, visit the newly installed app. This will allow you to set " +"the location of your original channel and an optional date range of files/" +"conversations to copy." msgstr "" "Ten dodatek kopiuje istniejące treści i magazyn plików do sklonowanego lub " -"skopiowanego kanału. Po zainstalowaniu, odwiedź nowo zainstalowaną aplikację. " -"Umożliwi Ci to ustawienie lokalizacji oryginalnego kanału i opcjonalnego " -"zakresu dat plików lub konwersacji do skopiowania." +"skopiowanego kanału. Po zainstalowaniu, odwiedź nowo zainstalowaną aplikację. Umożliwi " +"Ci to ustawienie lokalizacji oryginalnego kanału i opcjonalnego zakresu dat plików lub " +"konwersacji do skopiowania." #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:136 msgid "" -"This will import all your conversations and cloud files from a cloned channel " -"on another server. This may take a while if you have lots of posts and or files." +"This will import all your conversations and cloud files from a cloned channel on " +"another server. This may take a while if you have lots of posts and or files." msgstr "" -"Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w " -"chmurze ze sklonowanego kanału na innym serwerze. Może to chwilę potrwać, jeśli " -"masz dużo wpisów lun plików." +"Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w chmurze ze " +"sklonowanego kanału na innym serwerze. Może to chwilę potrwać, jeśli masz dużo wpisów " +"lun plików." #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:137 msgid "Include posts" @@ -15896,11 +15620,11 @@ msgstr "Usuń rozmowę" #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:296 msgid "" -"No secure communications available. You may be able to respond " -"from the sender's profile page." +"No secure communications available. You may be able to respond from " +"the sender's profile page." msgstr "" -"Brak bezpiecznej komunikacji. Możesz odpowiedzieć ze strony " -"profilu nadawcy." +"Brak bezpiecznej komunikacji. Możesz odpowiedzieć ze strony profilu " +"nadawcy." #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:300 msgid "Send Reply" @@ -15926,8 +15650,8 @@ msgstr "Nie można zweryfikować żądanego kanału." #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:417 msgid "Selected channel has private message restrictions. Send failed." msgstr "" -"Wybrany kanał ma ograniczenia dotyczące wiadomości prywatnych. Wysyłanie nie " -"powiodło się." +"Wybrany kanał ma ograniczenia dotyczące wiadomości prywatnych. Wysyłanie nie powiodło " +"się." #: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:50 #: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:128 @@ -16132,8 +15856,7 @@ msgstr "Aplikacja Publikowanie w Wordpress" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:44 msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" msgstr "" -"Opublikowanie na serwisach WordPress lub innych, które używają API XMLRPC " -"WordPress" +"Opublikowanie na serwisach WordPress lub innych, które używają API XMLRPC WordPress" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:69 msgid "WordPress username" @@ -16158,8 +15881,8 @@ msgstr "Identyfikator blogu WordPress" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:82 msgid "For multi-user sites such as wordpress.com, otherwise leave blank" msgstr "" -"Dla serwisów wielowitrynowych, takich jak wordpress.com, w przeciwnym razie " -"pozostaw puste" +"Dla serwisów wielowitrynowych, takich jak wordpress.com, w przeciwnym razie pozostaw " +"puste" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:86 msgid "Post to WordPress by default" @@ -16176,8 +15899,7 @@ msgstr "Publikowanie w Wordpress" #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:22 msgid "Allow magic authentication only to websites of your immediate connections" msgstr "" -"Zezwalaj na magiczne uwierzytelnianie tylko w portalach Twoich bezpośrednich " -"połączeń" +"Zezwalaj na magiczne uwierzytelnianie tylko w portalach Twoich bezpośrednich połączeń" #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:28 #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:33 @@ -16457,8 +16179,7 @@ msgstr "Import magazyn plików Redmatrix" #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:120 msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "" -"Spowoduje to zaimportowanie wszystkich plików chmury Redmatrix do tego kanału." +msgstr "Spowoduje to zaimportowanie wszystkich plików chmury Redmatrix do tego kanału." #: ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:42 msgid "Use markdown for editing posts" @@ -16475,8 +16196,8 @@ msgstr "Aplikacja Zamazywanie Lokalizacji" #: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:35 msgid "Blur your precise location if your channel uses browser location mapping" msgstr "" -"Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania lokalizacji " -"w przeglądarce" +"Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania lokalizacji w " +"przeglądarce" #: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:40 msgid "Minimum offset in meters" @@ -16504,13 +16225,13 @@ msgstr "Strona do załadowania po zalogowaniu" #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:62 msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy collection), " -""channel" or "notifications/system" (leave blank for " -"default network page (grid)." +"Examples: "apps", "network?f=&gid=37" (privacy collection), "" +"channel" or "notifications/system" (leave blank for default network " +"page (grid)." msgstr "" -"Przykłady: "aplikacje", "sieć?f=&gid=37" (kolekcja " -"prywatności), "kanał" lub "powiadomienie/system" (pozostaw " -"puste dla domyślnej strony sieci." +"Przykłady: "aplikacje", "sieć?f=&gid=37" (kolekcja prywatności), " +""kanał" lub "powiadomienie/system" (pozostaw puste dla domyślnej " +"strony sieci." #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:70 msgid "Startpage" @@ -16669,22 +16390,21 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "Klasa usługi" #~ msgid "" -#~ "Only allow new member registrations with an invitation code. Above register " -#~ "policy must be set to Yes." +#~ "Only allow new member registrations with an invitation code. Above register policy " +#~ "must be set to Yes." #~ msgstr "" -#~ "Zezwalaj tylko na rejestracje nowych członków za pomocą kodu zaproszenia. " -#~ "Powyższe zasady rejestrów muszą być ustawione na Tak." +#~ "Zezwalaj tylko na rejestracje nowych członków za pomocą kodu zaproszenia. Powyższe " +#~ "zasady rejestrów muszą być ustawione na Tak." #~ msgid "Verify Email Addresses" #~ msgstr "Zweryfikuj adresy e-mail" #~ msgid "Maximum daily site registrations exceeded. Please try again tomorrow." #~ msgstr "" -#~ "Przekroczono maksymalną dzienną liczbę rejestracji witryn. Proszę spróbuj " -#~ "ponownie jutro." +#~ "Przekroczono maksymalną dzienną liczbę rejestracji na tym portalu. Proszę spróbować " +#~ "jutro." -#~ msgid "" -#~ "Please indicate acceptance of the Terms of Service. Registration failed." +#~ msgid "Please indicate acceptance of the Terms of Service. Registration failed." #~ msgstr "" #~ "Proszę zaznaczyć akceptację Warunków korzystania z usługi. " #~ "Rejestracja nieudana." @@ -16693,14 +16413,12 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "Hasła niezgodne." #~ msgid "Registration successful. Continue to create your first channel..." -#~ msgstr "" -#~ "Rejestracja pomyślna. Kontynuuj tworzenie swojego pierwszego kanału ..." +#~ msgstr "Rejestracja pomyślna. Kontynuuj tworzenie swojego pierwszego kanału ..." -#~ msgid "" -#~ "Registration successful. Please check your email for validation instructions." +#~ msgid "Registration successful. Please check your email for validation instructions." #~ msgstr "" -#~ "Rejestracja oomyślna. Sprawdź pocztę e-mail, aby uzyskać instrukcje " -#~ "dotyczące weryfikacji." +#~ "Rejestracja pomyślna. Sprawdź pocztę e-mail, aby uzyskać instrukcje dotyczące " +#~ "weryfikacji." #~ msgid "Your registration is pending approval by the site owner." #~ msgstr "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela portalu." @@ -16709,11 +16427,10 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela witryny." #~ msgid "" -#~ "Select a channel permission role for your usage needs and privacy " -#~ "requirements." +#~ "Select a channel permission role for your usage needs and privacy requirements." #~ msgstr "" -#~ "Wybierz rolę uprawnień do kanału zgodnie z potrzebami użytkowania i " -#~ "wymaganiami dotyczącymi prywatności." +#~ "Wybierz rolę uprawnień do kanału zgodnie z potrzebami użytkowania i wymaganiami " +#~ "dotyczącymi prywatności." #~ msgid "no" #~ msgstr "nie" @@ -16722,18 +16439,17 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "tak" #~ msgid "" -#~ "This site requires email verification. After completing this form, please " -#~ "check your email for further instructions." +#~ "This site requires email verification. After completing this form, please check " +#~ "your email for further instructions." #~ msgstr "" -#~ "Ta witryna wymaga weryfikację adresu e-mail. Po wypełnieniu tego formularza " -#~ "sprawdź swoją pocztę e-mail, aby uzyskać dalsze instrukcje." +#~ "Ta witryna wymaga weryfikację adresu e-mail. Po wypełnieniu tego formularza sprawdź " +#~ "swoją pocztę e-mail, aby uzyskać dalsze instrukcje." #~ msgid "Please join us on $Projectname" #~ msgstr "Dołącz do nas na $Projectname" #~ msgid "Invitation limit exceeded. Please contact your site administrator." -#~ msgstr "" -#~ "Przekroczono limit zaproszeń. Skontaktuj się z administratorem portalu." +#~ msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem portalu." #~ msgid "%d message sent." #~ msgid_plural "%d messages sent." @@ -16742,28 +16458,25 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr[2] "Wysłano %d wiadomości." #~ msgid "Send email invitations to join this network" -#~ msgstr "" -#~ "Wyślij wiadomości e-mail z zaproszeniami do przyłączenia się do tej sieci" +#~ msgstr "Wyślij wiadomości e-mail z zaproszeniami do przyłączenia się do tej sieci" #~ msgid "Please join my community on $Projectname." -#~ msgstr "" -#~ "Zapraszam do dołączenia do mojej społeczności $Projectname i Fediverse." +#~ msgstr "Zapraszam do dołączenia do mojej społeczności $Projectname i Fediverse." #~ msgid "You will need to supply this invitation code:" #~ msgstr "W formularzy rejstracji trzeba będzie podać ten kod zaproszenia:" #~ msgid "1. Register at any $Projectname location (they are all inter-connected)" #~ msgstr "" -#~ "1. Zarejestruj się na poniżej wskazanym portalu sieci $Projectname (choć " -#~ "możesz też na innym, bo wszystkie są ze sobą połączone) i utwórz swój " -#~ "domyślny profil. Wcześniej zapoznaj się z Regulaminem i poradnikiem \"Kanał " -#~ "osobisty\" dostępnym w po kliknieciu linku \"Pomoc\" lub skontaktuj się ze " -#~ "mną." +#~ "1. Zarejestruj się na poniżej wskazanym portalu sieci $Projectname (choć możesz też " +#~ "na innym, bo wszystkie są ze sobą połączone) i utwórz swój domyślny profil. " +#~ "Wcześniej zapoznaj się z Regulaminem i poradnikiem \"Kanał osobisty\" dostępnym w " +#~ "po kliknieciu linku \"Pomoc\" lub skontaktuj się ze mną." #~ msgid "2. Enter my $Projectname network address into the site searchbar." #~ msgstr "" -#~ "2. Aby połączyć się z moim kanałem, wpisz w pasku wyszukiwania portalu mój " -#~ "adres sieciowy $Projectname." +#~ "2. Aby połączyć się z moim kanałem, wpisz w pasku wyszukiwania portalu mój adres " +#~ "sieciowy $Projectname." #~ msgid "or visit" #~ msgstr "lub odwiedź adres URL" diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php index c74ed605a..acb2fca18 100644 --- a/view/pl/hstrings.php +++ b/view/pl/hstrings.php @@ -17,7 +17,7 @@ App::$strings["Can view my wiki pages"] = "Może przeglądać moje strony wiki"; App::$strings["Can create/edit my channel webpages"] = "Może tworzyć/edytować strony internetowe mojego kanału"; App::$strings["Can write to my wiki pages"] = "Może pisać na moich stronach wiki"; App::$strings["Can post on my channel (wall) page"] = "Może publikować na stronie mojego kanału (ścianie)"; -App::$strings["Can comment on or like my posts"] = "Może komentować lub polubić moje wpisy"; +App::$strings["Can comment on or like my posts"] = "Może komentować lub oceniać moje wpisy"; App::$strings["Can send me private mail messages"] = "Może wysyłać mi prywatne wiadomości e-mail"; App::$strings["Can like/dislike profiles and profile things"] = "Może lubić/nie lubić profile i rzeczy w profilach"; App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "Może przekazywać informacje do wszystkich moich połączeń kanałowych za pośrednictwem !wzmianki w wpisach"; @@ -230,8 +230,8 @@ App::$strings["Profile unavailable to export."] = "Profil niedostępny do wyeksp App::$strings["Profile Name is required."] = "Wymaga się podania nazwy profilu."; App::$strings["Marital Status"] = "Stan cywilny"; App::$strings["Romantic Partner"] = "Partner romantyczny"; -App::$strings["Likes"] = "Polubienia"; -App::$strings["Dislikes"] = "Niepolubienia"; +App::$strings["Likes"] = "Oceny pozytywne"; +App::$strings["Dislikes"] = "Oceny negatywne"; App::$strings["Work/Employment"] = "Praca/Zatrudnienie"; App::$strings["Religion"] = "Religia"; App::$strings["Political Views"] = "Poglądy polityczny"; @@ -312,7 +312,7 @@ App::$strings["Move this channel (disable all previous locations)"] = "Przenieś App::$strings["Use this channel nickname instead of the one provided"] = "Użyj tego pseudonimu kanału zamiast podanego"; App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym portalu."; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę stronę otwartą do zakończenia procedury."; -App::$strings["Like/Dislike"] = "Polub/Dezaprobuj"; +App::$strings["Like/Dislike"] = "Oceń pozytywnie/negatywnie"; App::$strings["This action is restricted to members."] = "Ta akcja jest ograniczona do członków."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Aby kontynuować, zaloguj się za pomocą ID \$Projectname lub zarejestruj się jako nowy członek \$Projectname."; App::$strings["Invalid request."] = "Nieprawidłowe żądanie."; @@ -322,8 +322,8 @@ App::$strings["Channel unavailable."] = "Kanał niedostępny."; App::$strings["Previous action reversed."] = "Poprzednia czynność została cofnięta."; App::$strings["photo"] = "zdjecie"; App::$strings["status"] = "stan"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s polubił %3\$s %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s dezaprobował %3\$s %2\$s"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s ocenił pozytywnie %3\$s %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s ocenił negatywnie %3\$s %2\$s"; App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s zgadza się z %3\$s dla %2\$s"; App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s nie zgadza się z %3\$s dla %2\$s"; App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s wstrzymuje się od decyzji w sprawie %3\$s dla %2\$s"; @@ -735,7 +735,7 @@ App::$strings["Empty post discarded."] = "Pusty wpis został odrzucony."; App::$strings["Duplicate post suppressed."] = "Powielony wpis został wyłączony."; App::$strings["System error. Post not saved."] = "Błąd systemu. Wpis nie został zapisany."; App::$strings["Your comment is awaiting approval."] = "Twój komentarz oczekuje na zatwierdzenie."; -App::$strings["Unable to obtain post information from database."] = "Nie można uzyskać z bazy danych informacji o tym poście."; +App::$strings["Unable to obtain post information from database."] = "Nie można uzyskać z bazy danych informacji o tym wpisie."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Osiągnięty został limit %1$.0f wpisów najwyższego poziomu."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Osiągnięty został limit %1$.0f stron internetowych."; App::$strings["Website:"] = "Portal internetowy:"; @@ -757,7 +757,7 @@ App::$strings["webpage"] = "strona internetowa"; App::$strings["block"] = "blok"; App::$strings["layout"] = "układ"; App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "Element %s zainstalowany"; +App::$strings["%s element installed"] = "Element %s został zainstalowany"; App::$strings["%s element installation failed"] = "Instalacja elementu %s nie powiodła się"; App::$strings["Public Hubs"] = "Portale publiczne"; App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Wymienione portale umożliwiają publiczną rejestrację w sieci \$Projectname. Wszystkie portale w sieci są ze sobą połączone, więc członkostwo w którymkolwiek z nich oznacza członkostwo w całej sieci. Niektóre portale mogą wymagać subskrypcji lub oferować stopniowe plany usług. Dodatkową informację można znaleźć na poszczególnych portalach."; @@ -768,12 +768,12 @@ App::$strings["Stats"] = "Statystyki"; App::$strings["Software"] = "Oprogramowanie"; App::$strings["Ratings"] = "Oceny"; App::$strings["Rate"] = "Ocena"; -App::$strings["You must be logged in to see this page."] = "Musisz być zalogowany, aby zobaczyć tę stronę."; +App::$strings["You must be logged in to see this page."] = "Trzeba być zalogowanym, aby zobaczyć tę stronę."; App::$strings["Chatrooms App"] = "Aplikacja Czaty"; App::$strings["Access Controlled Chatrooms"] = "Dostęp do kontrolowanych czatów"; -App::$strings["Room not found"] = "Nie znaleziono pokoju"; -App::$strings["Leave Room"] = "Opuść pokój"; -App::$strings["Delete Room"] = "Usuń pokój"; +App::$strings["Room not found"] = "Nie znaleziono czatu"; +App::$strings["Leave Room"] = "Opuść czat"; +App::$strings["Delete Room"] = "Usuń czat"; App::$strings["I am away right now"] = "Nie ma mnie teraz"; App::$strings["I am online"] = "Jestem dostępny"; App::$strings["Bookmark this room"] = "Zaznacz ten pokój"; @@ -805,7 +805,7 @@ App::$strings["Request could not be verified. (You may have previously submitted App::$strings["Password Reset"] = "Resetowanie hasła"; App::$strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem."; App::$strings["Your new password is"] = "Twoje nowe hasło to"; -App::$strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie"; +App::$strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło, a następnie"; App::$strings["click here to login"] = "kliknij tutaj aby się zalogować"; App::$strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może zostać zmienione na stronie Ustawienia po pomyślnym zalogowaniu."; App::$strings["Your password has changed at %s"] = "Twoje hasło zostało zmienione na %s"; @@ -835,7 +835,7 @@ App::$strings["Your software should be updated"] = "Twoje oprogramowanie powinno App::$strings["Administration"] = "Administracja"; App::$strings["Summary"] = "Podsumowanie"; App::$strings["Registered accounts"] = "Zarejestrowane konta"; -App::$strings["Pending registrations"] = "Rejestracja oczekująca"; +App::$strings["Pending registrations"] = "Rejestracje oczekujące"; App::$strings["Registered channels"] = "Zarejestrowane kanały"; App::$strings["Active addons"] = "Aktywne dodatki"; App::$strings["Version"] = "Wersja"; @@ -875,13 +875,13 @@ App::$strings["or select an existing one (doubleclick)"] = "lub wybierz istniej App::$strings["Add a Tag"] = "Dodaj tag"; App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Przykład: @bob, @Barbara_Jensen, @jim@example.com"; App::$strings["Flag as adult in album view"] = "Oznacz jako \"dla dorosłych\" w widoku albumu"; -App::$strings["I like this (toggle)"] = "Lubię to (przełącz)"; +App::$strings["I like this (toggle)"] = "Podoba mis sie to (przełącz)"; App::$strings["I don't like this (toggle)"] = "Nie podoba mi się to (przełącz)"; App::$strings["Please wait"] = "Proszę czekać"; App::$strings["This is you"] = "To jesteś ty"; App::$strings["Comment"] = "Komentarz"; -App::$strings["__ctx:title__ Likes"] = "Polubienia"; -App::$strings["__ctx:title__ Dislikes"] = "Niepolubienia"; +App::$strings["__ctx:title__ Likes"] = "Ocen pozytywnych"; +App::$strings["__ctx:title__ Dislikes"] = "Ocen negatywnych"; App::$strings["__ctx:title__ Agree"] = "Zgoda"; App::$strings["__ctx:title__ Disagree"] = "Sprzeciw"; App::$strings["__ctx:title__ Abstain"] = "Wstrzymuję się"; @@ -890,20 +890,20 @@ App::$strings["__ctx:title__ Not attending"] = "Nie uczestniczę"; App::$strings["__ctx:title__ Might attend"] = "Mogę uczestniczyć"; App::$strings["View all"] = "Pokaż wszystkie"; App::$strings["__ctx:noun__ Like"] = array( - 0 => "Polubienie", - 1 => "Polubienia", - 2 => "Polubień", + 0 => "Ocena pozytywna", + 1 => "Oceny pozytywne", + 2 => "Oce pozytywanych", ); App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Niepolubienie", - 1 => "Niepolubienia", - 2 => "Niepolubień", + 0 => "Ocena negartwna", + 1 => "Oceny negatywne", + 2 => "Ocen negatywnych", ); App::$strings["Photo Tools"] = "Narzędzia fotograficzne"; App::$strings["In This Photo:"] = "Na tym zdjęciu:"; App::$strings["Map"] = "Mapa"; -App::$strings["__ctx:noun__ Likes"] = "Polubienia"; -App::$strings["__ctx:noun__ Dislikes"] = "Niepolubienia"; +App::$strings["__ctx:noun__ Likes"] = "Oceny pozytywne"; +App::$strings["__ctx:noun__ Dislikes"] = "Oceny negatywne"; App::$strings["Close"] = "Zamknij"; App::$strings["Recent Photos"] = "Najnowsze zdjęcia"; App::$strings["Posts and comments"] = "Wpisy i komentarze"; @@ -929,12 +929,12 @@ App::$strings["Visit your channel homepage"] = "Odwiedź stronę główną swoje App::$strings["View your connections and/or add somebody whose address you already know"] = "Wyświetl swoje kontakty albo dodaj osobę, której adres już znasz"; App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych połączeń)"; App::$strings["View the public stream. Warning: this content is not moderated"] = "Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana"; -App::$strings["Active"] = "Aktywny"; -App::$strings["Blocked"] = "Zablokowany"; -App::$strings["Ignored"] = "Ignorowany"; -App::$strings["Hidden"] = "Ukryty"; +App::$strings["Active"] = "Aktywne"; +App::$strings["Blocked"] = "Zablokowane"; +App::$strings["Ignored"] = "Ignorowane"; +App::$strings["Hidden"] = "Ukryte"; App::$strings["Archived/Unreachable"] = "Zarchiwizowane/Nieosiągalne"; -App::$strings["New"] = "Nowy"; +App::$strings["New"] = "Nowe"; App::$strings["Active Connections"] = "Aktywne połączenia"; App::$strings["Show active connections"] = "Pokaż aktywne połączenia"; App::$strings["New Connections"] = "Nowe połączenia"; @@ -954,7 +954,7 @@ App::$strings["Channel address"] = "Adres kanału"; App::$strings["Network"] = "Sieć"; App::$strings["Call"] = "Połączenie"; App::$strings["Status"] = "Stan"; -App::$strings["Connected"] = "Połączene"; +App::$strings["Connected"] = "Połączone"; App::$strings["Approve connection"] = "Zatwierdź połączenie"; App::$strings["Approve"] = "Zatwierdź"; App::$strings["Ignore connection"] = "Ignoruj połączenie"; @@ -981,8 +981,8 @@ App::$strings["Persistent affinity levels"] = "Trwałe poziomy więzi"; App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do wartości domyślnych po ponownym załadowaniu strony"; App::$strings["Affinity Tool Settings"] = "Ustawienia Narzędzia Zaprzyjaźnienia"; App::$strings["No channel."] = "Brak kanału."; -App::$strings["No connections in common."] = "Brak wspólnych połączeń."; -App::$strings["View Common Connections"] = "Wyświetl typowe połączenia"; +App::$strings["No connections in common."] = "Brak popularnych połączeń."; +App::$strings["View Common Connections"] = "Wyświetl popularne połączenia"; App::$strings["🔁 Repeated %1\$s's %2\$s"] = "🔁 Powtórzony %2\$s %1\$s"; App::$strings["Post repeated"] = "Wpis powtórzony"; App::$strings["Page link"] = "Link do strony"; @@ -996,7 +996,7 @@ App::$strings["Authenticate"] = "Uwierzytelnianie"; App::$strings["Item not available."] = "Element nie jest dostępny."; App::$strings["This setting requires special processing and editing has been blocked."] = "To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana."; App::$strings["Configuration Editor"] = "Edytor konfiguracji"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie wiesz, jak prawidłowo korzystać z tej funkcji."; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie działać. Opuść tę stronę, chyba że czujesz się kompetentnie i wiesz, jak prawidłowo korzystać z tej funkcji."; App::$strings["Random Channel App"] = "Aplikacja Losowy kanał"; App::$strings["Visit a random channel in the \$Projectname network"] = "Odwiedź losowy kanał w sieci \$Projectname"; App::$strings["Theme settings updated."] = "Zaktualizowano ustawienia motywu."; @@ -1182,8 +1182,8 @@ App::$strings["My site offers free accounts with optional paid upgrades"] = "Mó App::$strings["Default permission role for new accounts"] = "Domyślna rola uprawnień dla nowych kont"; App::$strings["This role will be used for the first channel created after registration."] = "Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji."; App::$strings["Minute(s)"] = "Minuta/Minuty"; -App::$strings["Hour(s)"] = "Godzin/Godziny"; -App::$strings["Day(s)"] = "Dzień.Dni"; +App::$strings["Hour(s)"] = "Godzina/Godziny"; +App::$strings["Day(s)"] = "Dzień/Dni"; App::$strings["Week(s)"] = "Tydzień/Tygodnie"; App::$strings["Month(s)"] = "Miesiąc/Miesiące"; App::$strings["Year(s)"] = "Rok/Lata"; @@ -1210,9 +1210,9 @@ App::$strings["Default system theme - may be over-ridden by user profiles - Date: Tue, 1 Jun 2021 11:57:11 +0200 Subject: Update Spanish --- view/es-es/hmessages.po | 2709 +++++++++++++++++++++++++++-------------------- view/es-es/hstrings.php | 199 +++- 2 files changed, 1687 insertions(+), 1221 deletions(-) (limited to 'view') diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 8c730d058..a9d2fdd48 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the hubzilla package. # # Translators: -# Alfonso Martínez , 2015 +# Alfonso Martínez, 2015 # inboxwall , 2015 # jeroenpraat, 2015 # Manuel Jiménez Friaza , 2017-2021 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: hubzilla\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-23 10:52+0000\n" -"PO-Revision-Date: 2021-02-24 09:30+0000\n" +"POT-Creation-Date: 2021-04-29 08:26+0000\n" +"PO-Revision-Date: 2021-05-14 18:05+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/hubzilla/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -24,15 +24,12 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1 ? 1 : 0);\n" - - - #: ../../view/theme/redbasic/php/config.php:15 #: ../../addon/cart/submodules/orderoptions.php:335 #: ../../addon/cart/submodules/orderoptions.php:359 #: ../../addon/cart/submodules/orderoptions.php:435 #: ../../addon/cart/submodules/orderoptions.php:459 -#: ../../include/text.php:3382 ../../Zotlabs/Module/Admin/Site.php:191 +#: ../../include/text.php:3395 ../../Zotlabs/Module/Admin/Site.php:251 msgid "Default" msgstr "Predeterminado" @@ -90,8 +87,8 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Widget/Wiki_pages.php:99 #: ../../Zotlabs/Widget/Eventstools.php:16 ../../Zotlabs/Module/Tokens.php:188 #: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Import.php:646 ../../Zotlabs/Module/Setup.php:304 -#: ../../Zotlabs/Module/Setup.php:344 ../../Zotlabs/Module/Group.php:151 +#: ../../Zotlabs/Module/Import.php:647 ../../Zotlabs/Module/Setup.php:306 +#: ../../Zotlabs/Module/Setup.php:346 ../../Zotlabs/Module/Group.php:151 #: ../../Zotlabs/Module/Group.php:167 ../../Zotlabs/Module/Oauth.php:111 #: ../../Zotlabs/Module/Chat.php:209 ../../Zotlabs/Module/Chat.php:248 #: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Mitem.php:259 @@ -100,24 +97,25 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Security.php:120 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Accounts.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:412 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Account_edit.php:73 #: ../../Zotlabs/Module/Admin/Profs.php:178 #: ../../Zotlabs/Module/Admin/Addons.php:442 -#: ../../Zotlabs/Module/Events.php:501 ../../Zotlabs/Module/Permcats.php:129 -#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Appman.php:155 +#: ../../Zotlabs/Module/Regate.php:384 ../../Zotlabs/Module/Events.php:501 +#: ../../Zotlabs/Module/Permcats.php:129 ../../Zotlabs/Module/Mood.php:158 +#: ../../Zotlabs/Module/Appman.php:155 #: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 #: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Profiles.php:725 -#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Xchan.php:15 #: ../../Zotlabs/Module/Affinity.php:87 ../../Zotlabs/Module/Rate.php:168 #: ../../Zotlabs/Module/Settings/Network.php:62 #: ../../Zotlabs/Module/Settings/Features.php:48 #: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Account.php:103 +#: ../../Zotlabs/Module/Settings/Account.php:107 #: ../../Zotlabs/Module/Settings/Events.php:42 #: ../../Zotlabs/Module/Settings/Manage.php:43 #: ../../Zotlabs/Module/Settings/Channel_home.php:91 @@ -132,7 +130,7 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Module/Defperms.php:266 ../../Zotlabs/Module/Pconfig.php:116 #: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Thing.php:328 #: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Pdledit.php:108 -#: ../../Zotlabs/Module/Wiki.php:215 ../../Zotlabs/Module/Connedit.php:897 +#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Connedit.php:897 #: ../../Zotlabs/Module/Locs.php:132 ../../Zotlabs/Module/Sources.php:125 #: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Lib/ThreadItem.php:827 #: ../../Zotlabs/Storage/Browser.php:382 @@ -189,29 +187,29 @@ msgstr "Estrechar la barra de navegación" #: ../../addon/libertree/Mod_Libertree.php:59 #: ../../addon/socialauth/Mod_SocialAuth.php:214 #: ../../addon/ljpost/Mod_Ljpost.php:63 ../../addon/ljpost/Mod_Ljpost.php:67 -#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1469 +#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1468 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:635 -#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:636 +#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Register.php:536 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Filestorage.php:203 #: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:259 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Events.php:478 #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Api.php:99 #: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Settings/Channel.php:311 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 #: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Sources.php:124 #: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Lib/Libzotdir.php:165 #: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 #: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 #: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 #: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 -#: ../../boot.php:1716 +#: ../../boot.php:1721 msgid "No" msgstr "No" @@ -257,28 +255,28 @@ msgstr "No" #: ../../addon/libertree/Mod_Libertree.php:59 #: ../../addon/socialauth/Mod_SocialAuth.php:214 #: ../../addon/ljpost/Mod_Ljpost.php:63 ../../addon/ljpost/Mod_Ljpost.php:67 -#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1469 +#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1468 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:635 -#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:636 +#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Register.php:536 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Filestorage.php:203 #: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:261 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Admin/Site.php:321 ../../Zotlabs/Module/Events.php:478 #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Api.php:98 #: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Settings/Channel.php:311 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 #: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 #: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 #: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Storage/Browser.php:310 #: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 #: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 -#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1716 +#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1721 msgid "Yes" msgstr "Sí" @@ -433,7 +431,7 @@ msgid "Channel Reputation" msgstr "Reputación del canal" #: ../../addon/channelreputation/channelreputation.php:233 -#: ../../include/acl_selectors.php:155 ../../Zotlabs/Widget/Pinned.php:160 +#: ../../include/acl_selectors.php:156 ../../Zotlabs/Widget/Pinned.php:158 #: ../../Zotlabs/Module/Photos.php:1275 ../../Zotlabs/Lib/ThreadItem.php:497 #: ../../Zotlabs/Storage/Browser.php:411 msgid "Close" @@ -489,17 +487,17 @@ msgstr "App Superblock" #: ../../addon/xmpp/Mod_Xmpp.php:35 ../../Zotlabs/Module/Tokens.php:99 #: ../../Zotlabs/Module/Group.php:107 ../../Zotlabs/Module/Oauth.php:100 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Poke.php:165 -#: ../../Zotlabs/Module/Cdav.php:876 ../../Zotlabs/Module/Webpages.php:48 +#: ../../Zotlabs/Module/Cdav.php:877 ../../Zotlabs/Module/Webpages.php:48 #: ../../Zotlabs/Module/Pubstream.php:20 ../../Zotlabs/Module/Permcats.php:63 -#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Uexport.php:62 #: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Cards.php:51 #: ../../Zotlabs/Module/Articles.php:52 ../../Zotlabs/Module/Bookmarks.php:78 -#: ../../Zotlabs/Module/Probe.php:19 ../../Zotlabs/Module/Invite.php:110 -#: ../../Zotlabs/Module/Notes.php:57 ../../Zotlabs/Module/Affinity.php:52 -#: ../../Zotlabs/Module/Defperms.php:190 ../../Zotlabs/Module/Oauth2.php:106 -#: ../../Zotlabs/Module/Randprof.php:29 ../../Zotlabs/Module/Pdledit.php:43 -#: ../../Zotlabs/Module/Wiki.php:52 ../../Zotlabs/Module/Suggest.php:40 -#: ../../Zotlabs/Module/Sources.php:88 +#: ../../Zotlabs/Module/Probe.php:19 ../../Zotlabs/Module/Invite.php:56 +#: ../../Zotlabs/Module/Invite.php:310 ../../Zotlabs/Module/Notes.php:57 +#: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Defperms.php:190 +#: ../../Zotlabs/Module/Oauth2.php:106 ../../Zotlabs/Module/Randprof.php:29 +#: ../../Zotlabs/Module/Pdledit.php:43 ../../Zotlabs/Module/Wiki.php:52 +#: ../../Zotlabs/Module/Suggest.php:40 ../../Zotlabs/Module/Sources.php:88 msgid "Not Installed" msgstr "No instalado/a" @@ -593,7 +591,7 @@ msgid "View Profile" msgstr "Ver el perfil" #: ../../addon/openclipatar/openclipatar.php:58 ../../include/nav.php:120 -#: ../../include/channel.php:1543 +#: ../../include/channel.php:1567 msgid "Edit Profile" msgstr "Editar el perfil" @@ -711,8 +709,8 @@ msgstr "Mínimo 100, por defecto 100 microsegundos" msgid "Queueworker Settings" msgstr "Configuración del gestor de procesos de trabajo en cola" -#: ../../addon/queueworker/Mod_Queueworker.php:116 ../../include/text.php:1152 -#: ../../include/text.php:1164 ../../Zotlabs/Widget/Notes.php:23 +#: ../../addon/queueworker/Mod_Queueworker.php:116 ../../include/text.php:1145 +#: ../../include/text.php:1157 ../../Zotlabs/Widget/Notes.php:23 #: ../../Zotlabs/Module/Admin/Profs.php:94 #: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Cards.php:113 #: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Articles.php:117 @@ -767,7 +765,7 @@ msgstr "Galería" msgid "Photo Gallery" msgstr "Galería de fotos" -#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1440 +#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1464 #: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Editwebpage.php:32 #: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Webpages.php:39 #: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 @@ -798,7 +796,7 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../addon/openid/Mod_Id.php:53 ../../addon/mail/Mod_Mail.php:26 #: ../../addon/pumpio/pumpio.php:44 ../../addon/keepout/keepout.php:36 -#: ../../include/photos.php:27 ../../include/items.php:4001 +#: ../../include/photos.php:27 ../../include/items.php:4087 #: ../../include/attach.php:156 ../../include/attach.php:205 #: ../../include/attach.php:278 ../../include/attach.php:329 #: ../../include/attach.php:424 ../../include/attach.php:438 @@ -808,12 +806,12 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Attach_edit.php:90 #: ../../Zotlabs/Module/Attach_edit.php:99 #: ../../Zotlabs/Module/Attach_edit.php:106 -#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/Register.php:80 -#: ../../Zotlabs/Module/Setup.php:206 +#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/Register.php:197 +#: ../../Zotlabs/Module/Setup.php:208 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Channel.php:209 ../../Zotlabs/Module/Channel.php:364 -#: ../../Zotlabs/Module/Channel.php:403 ../../Zotlabs/Module/Group.php:15 +#: ../../Zotlabs/Module/Channel.php:209 ../../Zotlabs/Module/Channel.php:365 +#: ../../Zotlabs/Module/Channel.php:404 ../../Zotlabs/Module/Group.php:15 #: ../../Zotlabs/Module/Group.php:31 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 @@ -822,8 +820,8 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Chat.php:118 #: ../../Zotlabs/Module/Channel_calendar.php:232 #: ../../Zotlabs/Module/Like.php:242 ../../Zotlabs/Module/Poke.php:157 -#: ../../Zotlabs/Module/Item.php:496 ../../Zotlabs/Module/Item.php:515 -#: ../../Zotlabs/Module/Item.php:525 ../../Zotlabs/Module/Item.php:1436 +#: ../../Zotlabs/Module/Item.php:506 ../../Zotlabs/Module/Item.php:525 +#: ../../Zotlabs/Module/Item.php:535 ../../Zotlabs/Module/Item.php:1444 #: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Profile.php:99 #: ../../Zotlabs/Module/Profile.php:114 #: ../../Zotlabs/Module/Sharedwithme.php:19 @@ -837,7 +835,7 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Achievements.php:34 #: ../../Zotlabs/Module/Events.php:277 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Viewsrc.php:19 -#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Display.php:428 +#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Display.php:420 #: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/New_channel.php:105 #: ../../Zotlabs/Module/New_channel.php:130 #: ../../Zotlabs/Module/Service_limits.php:11 @@ -856,14 +854,14 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 #: ../../Zotlabs/Module/Profiles.php:200 ../../Zotlabs/Module/Profiles.php:637 #: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Bookmarks.php:70 -#: ../../Zotlabs/Module/Invite.php:21 ../../Zotlabs/Module/Invite.php:102 +#: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Rate.php:115 ../../Zotlabs/Module/Menu.php:130 #: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Defperms.php:182 #: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 #: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Pdledit.php:35 -#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:285 -#: ../../Zotlabs/Module/Wiki.php:428 ../../Zotlabs/Module/Suggest.php:32 +#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:284 +#: ../../Zotlabs/Module/Wiki.php:427 ../../Zotlabs/Module/Suggest.php:32 #: ../../Zotlabs/Module/Connedit.php:397 #: ../../Zotlabs/Module/Notifications.php:11 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 @@ -874,12 +872,12 @@ msgid "Permission denied." msgstr "Acceso denegado." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1723 +#: ../../include/selectors.php:77 ../../include/channel.php:1747 msgid "Male" msgstr "Hombre" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1721 +#: ../../include/selectors.php:77 ../../include/channel.php:1745 msgid "Female" msgstr "Mujer" @@ -927,9 +925,9 @@ msgstr "Nombre completo" #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 #: ../../addon/redred/Mod_Redred.php:71 ../../addon/rtof/Mod_Rtof.php:57 -#: ../../include/network.php:1764 ../../Zotlabs/Module/Cdav.php:1376 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../include/network.php:1768 ../../Zotlabs/Module/Cdav.php:1377 +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Admin/Accounts.php:330 #: ../../Zotlabs/Module/Profiles.php:789 ../../Zotlabs/Module/Connedit.php:920 msgid "Email" msgstr "Correo electrónico" @@ -1149,7 +1147,7 @@ msgstr "Tenga en cuenta que las estadísticas de Diaspora y Friendica se refiere msgid "Channel is required." msgstr "Se requiere un canal." -#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:322 +#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:326 msgid "Invalid channel." msgstr "El canal no es válido." @@ -1207,7 +1205,7 @@ msgstr "Se han importado las fotos" #: ../../include/items.php:441 ../../Zotlabs/Module/Import_items.php:120 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Group.php:99 #: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Cloud.php:123 -#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:89 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:82 #: ../../Zotlabs/Web/WebServer.php:115 msgid "Permission denied" @@ -1253,10 +1251,10 @@ msgid "0 or blank to import all available" msgstr "0 o en blanco para importar todos los disponibles" #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/pubcrawl/as.php:2049 ../../addon/diaspora/Receiver.php:1641 -#: ../../include/text.php:2253 ../../include/conversation.php:128 +#: ../../addon/pubcrawl/as.php:2101 ../../addon/diaspora/Receiver.php:1649 +#: ../../include/text.php:2254 ../../include/conversation.php:128 #: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Tagger.php:71 -#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Lib/Activity.php:3229 +#: ../../Zotlabs/Module/Subthread.php:115 ../../Zotlabs/Lib/Activity.php:3264 msgid "photo" msgstr "foto" @@ -1388,7 +1386,7 @@ msgid "Post to GNU social" msgstr "Publicar en GNU social" #: ../../addon/statusnet/statusnet.php:593 -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:420 msgid "Site name" msgstr "Nombre del sitio" @@ -1453,7 +1451,7 @@ msgstr "Publicar en WordPress" #: ../../addon/wppost/wppost.php:173 ../../addon/wppost/Mod_Wppost.php:98 #: ../../addon/dwpost/Mod_Dwpost.php:69 ../../addon/dwpost/dwpost.php:134 -#: ../../addon/ljpost/ljpost.php:134 ../../Zotlabs/Module/Wiki.php:384 +#: ../../addon/ljpost/ljpost.php:134 ../../Zotlabs/Module/Wiki.php:383 msgid "Source" msgstr "Fuente" @@ -1576,16 +1574,16 @@ msgstr "Modificado desde la fecha yyyy-mm-dd" msgid "Until modified date yyyy-mm-dd" msgstr "Modificado hasta la fecha yyyy-mm-dd" -#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1331 +#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1332 msgid "Set your location" msgstr "Establecer su ubicación" -#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1332 +#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1333 msgid "Clear browser location" msgstr "Eliminar los datos de localización geográfica del navegador" #: ../../addon/hsse/hsse.php:95 ../../addon/mail/Mod_Mail.php:167 -#: ../../addon/mail/Mod_Mail.php:310 ../../include/conversation.php:1344 +#: ../../addon/mail/Mod_Mail.php:310 ../../include/conversation.php:1345 #: ../../Zotlabs/Module/Article_edit.php:100 #: ../../Zotlabs/Module/Card_edit.php:101 #: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Chat.php:220 @@ -1593,129 +1591,129 @@ msgstr "Eliminar los datos de localización geográfica del navegador" msgid "Insert web link" msgstr "Insertar enlace web" -#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1348 +#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1349 msgid "Embed (existing) photo from your photo albums" msgstr "Insertar una foto de sus álbumes" #: ../../addon/hsse/hsse.php:134 ../../addon/mail/Mod_Mail.php:120 -#: ../../addon/mail/Mod_Mail.php:241 ../../include/conversation.php:1383 +#: ../../addon/mail/Mod_Mail.php:241 ../../include/conversation.php:1382 #: ../../Zotlabs/Module/Chat.php:218 msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1384 +#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1383 msgid "Tag term:" msgstr "Término de la etiqueta:" -#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1385 +#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1384 msgid "Where are you right now?" msgstr "¿Donde está ahora?" -#: ../../addon/hsse/hsse.php:139 ../../include/conversation.php:1388 +#: ../../addon/hsse/hsse.php:139 ../../include/conversation.php:1387 #: ../../Zotlabs/Module/Profile_photo.php:509 -#: ../../Zotlabs/Module/Cover_photo.php:430 ../../Zotlabs/Module/Wiki.php:403 +#: ../../Zotlabs/Module/Cover_photo.php:430 ../../Zotlabs/Module/Wiki.php:402 msgid "Choose images to embed" msgstr "Elegir imágenes para incluir" -#: ../../addon/hsse/hsse.php:140 ../../include/conversation.php:1389 +#: ../../addon/hsse/hsse.php:140 ../../include/conversation.php:1388 #: ../../Zotlabs/Module/Profile_photo.php:510 -#: ../../Zotlabs/Module/Cover_photo.php:431 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Cover_photo.php:431 ../../Zotlabs/Module/Wiki.php:403 msgid "Choose an album" msgstr "Elegir un álbum" -#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1390 +#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1389 msgid "Choose a different album..." msgstr "Elegir un álbum diferente..." -#: ../../addon/hsse/hsse.php:142 ../../include/conversation.php:1391 +#: ../../addon/hsse/hsse.php:142 ../../include/conversation.php:1390 #: ../../Zotlabs/Module/Profile_photo.php:512 -#: ../../Zotlabs/Module/Cover_photo.php:433 ../../Zotlabs/Module/Wiki.php:406 +#: ../../Zotlabs/Module/Cover_photo.php:433 ../../Zotlabs/Module/Wiki.php:405 msgid "Error getting album list" msgstr "Error al obtener la lista de álbumes" -#: ../../addon/hsse/hsse.php:143 ../../include/conversation.php:1392 +#: ../../addon/hsse/hsse.php:143 ../../include/conversation.php:1391 #: ../../Zotlabs/Module/Profile_photo.php:513 -#: ../../Zotlabs/Module/Cover_photo.php:434 ../../Zotlabs/Module/Wiki.php:407 +#: ../../Zotlabs/Module/Cover_photo.php:434 ../../Zotlabs/Module/Wiki.php:406 msgid "Error getting photo link" msgstr "Error al obtener el enlace de la foto" -#: ../../addon/hsse/hsse.php:144 ../../include/conversation.php:1393 +#: ../../addon/hsse/hsse.php:144 ../../include/conversation.php:1392 #: ../../Zotlabs/Module/Profile_photo.php:514 -#: ../../Zotlabs/Module/Cover_photo.php:435 ../../Zotlabs/Module/Wiki.php:408 +#: ../../Zotlabs/Module/Cover_photo.php:435 ../../Zotlabs/Module/Wiki.php:407 msgid "Error getting album" msgstr "Error al obtener el álbum" -#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1394 +#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1393 msgid "Comments enabled" msgstr "Comentarios habilitados" -#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1395 +#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1394 msgid "Comments disabled" msgstr "Comentarios deshabilitados" -#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1405 +#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1404 #: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Module/Events.php:486 #: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:837 msgid "Preview" msgstr "Previsualizar" -#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1438 +#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1437 #: ../../Zotlabs/Widget/Cdav.php:136 ../../Zotlabs/Module/Webpages.php:256 #: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1078 -#: ../../Zotlabs/Module/Wiki.php:301 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Wiki.php:300 ../../Zotlabs/Module/Layouts.php:194 msgid "Share" msgstr "Compartir" -#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1447 +#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1446 msgid "Page link name" msgstr "Nombre del enlace de la página" -#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1450 +#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1449 msgid "Post as" msgstr "Publicar como" -#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1452 +#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1451 #: ../../Zotlabs/Lib/ThreadItem.php:828 msgid "Bold" msgstr "Negrita" -#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1453 +#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1452 #: ../../Zotlabs/Lib/ThreadItem.php:829 msgid "Italic" msgstr "Itálico " -#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1454 +#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1453 #: ../../Zotlabs/Lib/ThreadItem.php:830 msgid "Underline" msgstr "Subrayar" -#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1455 +#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1454 #: ../../Zotlabs/Lib/ThreadItem.php:831 msgid "Quote" msgstr "Citar" -#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1456 +#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1455 #: ../../Zotlabs/Lib/ThreadItem.php:832 msgid "Code" msgstr "Código" -#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1457 +#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1456 #: ../../Zotlabs/Lib/ThreadItem.php:834 msgid "Attach/Upload file" msgstr "Adjuntar/cargar fichero" -#: ../../addon/hsse/hsse.php:208 ../../include/conversation.php:1460 -#: ../../Zotlabs/Module/Wiki.php:400 +#: ../../addon/hsse/hsse.php:208 ../../include/conversation.php:1459 +#: ../../Zotlabs/Module/Wiki.php:399 msgid "Embed an image from your albums" msgstr "Incluir una imagen de sus álbumes" #: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 -#: ../../include/conversation.php:1461 ../../include/conversation.php:1516 +#: ../../include/conversation.php:1460 ../../include/conversation.php:1515 #: ../../Zotlabs/Module/Article_edit.php:131 #: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 #: ../../Zotlabs/Module/Card_edit.php:132 ../../Zotlabs/Module/Oauth.php:112 #: ../../Zotlabs/Module/Oauth.php:138 ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Cdav.php:1058 ../../Zotlabs/Module/Cdav.php:1390 +#: ../../Zotlabs/Module/Cdav.php:1059 ../../Zotlabs/Module/Cdav.php:1391 #: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 #: ../../Zotlabs/Module/Editpost.php:111 #: ../../Zotlabs/Module/Admin/Addons.php:427 @@ -1724,32 +1722,32 @@ msgstr "Incluir una imagen de sus álbumes" #: ../../Zotlabs/Module/Editlayout.php:140 #: ../../Zotlabs/Module/Cover_photo.php:428 #: ../../Zotlabs/Module/Profiles.php:803 ../../Zotlabs/Module/Oauth2.php:117 -#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:368 -#: ../../Zotlabs/Module/Wiki.php:401 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:367 +#: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Connedit.php:934 #: ../../Zotlabs/Storage/Browser.php:383 msgid "Cancel" msgstr "Cancelar" #: ../../addon/hsse/hsse.php:210 ../../addon/hsse/hsse.php:257 -#: ../../include/conversation.php:1462 ../../include/conversation.php:1515 +#: ../../include/conversation.php:1461 ../../include/conversation.php:1514 #: ../../Zotlabs/Module/Profile_photo.php:508 -#: ../../Zotlabs/Module/Cover_photo.php:429 ../../Zotlabs/Module/Wiki.php:402 +#: ../../Zotlabs/Module/Cover_photo.php:429 ../../Zotlabs/Module/Wiki.php:401 msgid "OK" msgstr "OK" -#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1464 +#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1463 msgid "Toggle voting" msgstr "Cambiar votación" -#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1471 +#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1470 msgid "Disable comments" msgstr "Dehabilitar los comentarios" -#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1472 +#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1471 msgid "Toggle comments" msgstr "Activar o desactivar los comentarios" -#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1478 +#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1477 #: ../../Zotlabs/Module/Article_edit.php:117 #: ../../Zotlabs/Module/Card_edit.php:118 #: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:674 @@ -1757,30 +1755,30 @@ msgstr "Activar o desactivar los comentarios" msgid "Title (optional)" msgstr "Título (opcional)" -#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1482 +#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1481 msgid "Categories (optional, comma-separated list)" msgstr "Temas (opcional, lista separada por comas)" -#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1483 +#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1482 #: ../../Zotlabs/Module/Events.php:487 msgid "Permission settings" msgstr "Configuración de permisos" -#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1505 +#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1504 msgid "Other networks and post services" msgstr "Otras redes y servicios de publicación" #: ../../addon/hsse/hsse.php:250 ../../addon/mail/Mod_Mail.php:171 -#: ../../addon/mail/Mod_Mail.php:314 ../../include/conversation.php:1508 +#: ../../addon/mail/Mod_Mail.php:314 ../../include/conversation.php:1507 msgid "Set expiration date" msgstr "Configurar fecha de caducidad" -#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1511 +#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1510 msgid "Set publish date" msgstr "Establecer la fecha de publicación" #: ../../addon/hsse/hsse.php:255 ../../addon/mail/Mod_Mail.php:173 -#: ../../addon/mail/Mod_Mail.php:316 ../../include/conversation.php:1513 +#: ../../addon/mail/Mod_Mail.php:316 ../../include/conversation.php:1512 #: ../../Zotlabs/Module/Chat.php:219 ../../Zotlabs/Lib/ThreadItem.php:841 msgid "Encrypt text" msgstr "Cifrar texto" @@ -1896,37 +1894,37 @@ msgstr "Generador QR" msgid "Enter some text" msgstr "Escribir algún texto" -#: ../../addon/pubcrawl/as.php:1183 ../../include/cdav.php:158 +#: ../../addon/pubcrawl/as.php:1189 ../../include/cdav.php:158 #: ../../include/cdav.php:159 ../../include/cdav.php:167 #: ../../include/conversation.php:1214 ../../Zotlabs/Widget/Album.php:84 -#: ../../Zotlabs/Widget/Pinned.php:270 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Pinned.php:268 ../../Zotlabs/Widget/Portfolio.php:95 #: ../../Zotlabs/Module/Embedphotos.php:177 #: ../../Zotlabs/Module/Photos.php:793 ../../Zotlabs/Module/Photos.php:1255 -#: ../../Zotlabs/Lib/Activity.php:1529 ../../Zotlabs/Lib/Apps.php:1112 +#: ../../Zotlabs/Lib/Activity.php:1552 ../../Zotlabs/Lib/Apps.php:1112 #: ../../Zotlabs/Lib/Apps.php:1196 msgid "Unknown" msgstr "Desconocido" -#: ../../addon/pubcrawl/as.php:1475 ../../addon/pubcrawl/as.php:1887 -#: ../../addon/pubcrawl/as.php:2095 ../../include/network.php:1763 -#: ../../Zotlabs/Lib/Activity.php:3079 ../../Zotlabs/Lib/Activity.php:3271 +#: ../../addon/pubcrawl/as.php:1490 ../../addon/pubcrawl/as.php:1939 +#: ../../addon/pubcrawl/as.php:2147 ../../include/network.php:1767 +#: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 msgid "ActivityPub" msgstr "ActivityPub" -#: ../../addon/pubcrawl/as.php:2049 ../../addon/diaspora/Receiver.php:1641 -#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:112 +#: ../../addon/pubcrawl/as.php:2101 ../../addon/diaspora/Receiver.php:1649 +#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:115 msgid "status" msgstr "el mensaje de estado " -#: ../../addon/pubcrawl/as.php:2086 ../../addon/diaspora/Receiver.php:1587 +#: ../../addon/pubcrawl/as.php:2138 ../../addon/diaspora/Receiver.php:1595 #: ../../include/conversation.php:174 ../../Zotlabs/Module/Like.php:471 -#: ../../Zotlabs/Lib/Activity.php:3262 +#: ../../Zotlabs/Lib/Activity.php:3297 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../addon/pubcrawl/as.php:2088 ../../include/conversation.php:177 -#: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3264 +#: ../../addon/pubcrawl/as.php:2140 ../../include/conversation.php:177 +#: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 #, 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" @@ -2219,12 +2217,12 @@ msgstr "Reunámonos aquí" #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Oauth.php:113 #: ../../Zotlabs/Module/Oauth.php:139 ../../Zotlabs/Module/Chat.php:257 -#: ../../Zotlabs/Module/Cdav.php:1372 +#: ../../Zotlabs/Module/Cdav.php:1373 #: ../../Zotlabs/Module/Sharedwithme.php:106 #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Lib/NativeWikiPage.php:563 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Lib/NativeWikiPage.php:576 #: ../../Zotlabs/Storage/Browser.php:377 msgid "Name" msgstr "Nombre" @@ -2232,7 +2230,7 @@ msgstr "Nombre" #: ../../addon/rendezvous/rendezvous.php:173 #: ../../addon/cart/submodules/hzservices.php:655 #: ../../addon/cart/submodules/manualcat.php:260 -#: ../../Zotlabs/Module/Cdav.php:1014 ../../Zotlabs/Module/Events.php:481 +#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:481 #: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Rbmark.php:101 msgid "Description" msgstr "Descripción" @@ -2313,7 +2311,7 @@ msgid "You have no rendezvous. Press the button above to create a rendezvous!" msgstr "No tiene ninguna cita. ¡Presione el botón de arriba para crear una!" #: ../../addon/rendezvous/rendezvous.php:401 -#: ../../Zotlabs/Module/Setup.php:718 +#: ../../Zotlabs/Module/Setup.php:720 msgid "Errors encountered creating database tables." msgstr "Se han encontrado errores al crear las tablas de la base de datos." @@ -2373,10 +2371,11 @@ msgid "To:" msgstr "Para:" #: ../../addon/mail/Mod_Mail.php:161 ../../addon/mail/Mod_Mail.php:303 +#: ../../Zotlabs/Module/Invite.php:542 msgid "Subject:" msgstr "Asunto:" -#: ../../addon/mail/Mod_Mail.php:164 ../../Zotlabs/Module/Invite.php:157 +#: ../../addon/mail/Mod_Mail.php:164 ../../Zotlabs/Module/Invite.php:539 msgid "Your message:" msgstr "Su mensaje:" @@ -2848,7 +2847,8 @@ msgstr "Etiqueta" #: ../../addon/cart/submodules/orderoptions.php:358 #: ../../addon/cart/submodules/orderoptions.php:434 #: ../../addon/cart/submodules/orderoptions.php:458 -#: ../../include/datetime.php:211 ../../Zotlabs/Module/Events.php:468 +#: ../../include/js_strings.php:123 ../../include/datetime.php:211 +#: ../../Zotlabs/Module/Register.php:522 ../../Zotlabs/Module/Events.php:468 #: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Appman.php:143 #: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Profiles.php:747 #: ../../Zotlabs/Module/Profiles.php:751 @@ -3086,7 +3086,7 @@ 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/diaspora/import_diaspora.php:142 -#: ../../Zotlabs/Module/Import.php:594 +#: ../../Zotlabs/Module/Import.php:595 msgid "Import completed." msgstr "Importación completada." @@ -3109,6 +3109,12 @@ msgstr "App Protocolo Diaspora" msgid "Allow any Diaspora member to comment or like your public posts" msgstr "Permitir que cualquier miembro de Diaspora comente o ponga un like en sus entradas públicas" +#: ../../addon/diaspora/Mod_Diaspora.php:77 +msgid "" +"If this setting is disabled only your contacts will be able to comment or " +"like your public posts" +msgstr "Si esta configuración está desactivada, sólo sus contactos podrán comentar o dar a \"me gusta\" en sus publicaciones públicas" + #: ../../addon/diaspora/Mod_Diaspora.php:81 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " @@ -3126,22 +3132,22 @@ msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" msgid "Diaspora Protocol" msgstr "Protocolo Diaspora" -#: ../../addon/diaspora/Receiver.php:1591 +#: ../../addon/diaspora/Receiver.php:1599 #, php-format msgid "%1$s dislikes %2$s's %3$s" msgstr "a %1$s no le gusta el %3$s de %2$s" -#: ../../addon/diaspora/Receiver.php:2218 ../../Zotlabs/Module/Like.php:481 +#: ../../addon/diaspora/Receiver.php:2226 ../../Zotlabs/Module/Like.php:481 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s participa" -#: ../../addon/diaspora/Receiver.php:2220 ../../Zotlabs/Module/Like.php:483 +#: ../../addon/diaspora/Receiver.php:2228 ../../Zotlabs/Module/Like.php:483 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no participa" -#: ../../addon/diaspora/Receiver.php:2222 ../../Zotlabs/Module/Like.php:485 +#: ../../addon/diaspora/Receiver.php:2230 ../../Zotlabs/Module/Like.php:485 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s de %2$s: %1$s quizá participe" @@ -3230,7 +3236,7 @@ msgid "Web link." msgstr "Enlace Web." #: ../../addon/workflow/workflow.php:2617 -#: ../../addon/workflow/workflow.php:2678 ../../Zotlabs/Module/Cdav.php:1374 +#: ../../addon/workflow/workflow.php:2678 ../../Zotlabs/Module/Cdav.php:1375 #: ../../Zotlabs/Module/Connedit.php:918 msgid "Title" msgstr "Título" @@ -3363,7 +3369,9 @@ msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../addon/opensearch/opensearch.php:42 ../../Zotlabs/Module/Home.php:87 +#: ../../addon/opensearch/opensearch.php:42 +#: ../../Zotlabs/Module/Invite.php:225 ../../Zotlabs/Module/Invite.php:494 +#: ../../Zotlabs/Module/Invite.php:508 ../../Zotlabs/Module/Home.php:87 #: ../../Zotlabs/Module/Home.php:95 ../../Zotlabs/Lib/Enotify.php:66 msgid "$Projectname" msgstr "$Projectname" @@ -3436,7 +3444,7 @@ msgid "New registration" msgstr "Nuevo registro" #: ../../addon/notifyadmin/notifyadmin.php:40 -#: ../../Zotlabs/Module/Invite.php:90 +#: ../../Zotlabs/Module/Invite.php:252 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Falló el envío del mensaje." @@ -3451,7 +3459,7 @@ msgid "Not allowed." msgstr "No permitido/a." #: ../../addon/flashcards/Mod_Flashcards.php:254 -#: ../../include/acl_selectors.php:153 ../../Zotlabs/Module/Chat.php:241 +#: ../../include/acl_selectors.php:154 ../../Zotlabs/Module/Chat.php:241 #: ../../Zotlabs/Module/Filestorage.php:195 #: ../../Zotlabs/Module/Photos.php:678 ../../Zotlabs/Module/Photos.php:1047 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 @@ -3465,12 +3473,12 @@ msgid "Set/edit permissions" msgstr "Establecer/editar los permisos" #: ../../addon/flashcards/Mod_Flashcards.php:284 -#: ../../addon/flashcards/Mod_Flashcards.php:285 ../../include/items.php:3924 +#: ../../addon/flashcards/Mod_Flashcards.php:285 ../../include/items.php:4010 #: ../../Zotlabs/Module/Filestorage.php:29 #: ../../Zotlabs/Module/Admin/Themes.php:72 #: ../../Zotlabs/Module/Admin/Addons.php:260 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:42 -#: ../../Zotlabs/Module/Display.php:432 ../../Zotlabs/Module/Admin.php:62 +#: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 #: ../../Zotlabs/Module/Thing.php:96 msgid "Item not found." msgstr "Elemento no encontrado." @@ -3933,10 +3941,10 @@ msgstr "Publicar en Livejournal" msgid "Posted by" msgstr "Publicado por " -#: ../../addon/mdpost/mdpost.php:41 ../../include/text.php:2117 +#: ../../addon/mdpost/mdpost.php:41 ../../include/text.php:2118 #: ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Module/Wiki.php:371 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:370 msgid "Markdown" msgstr "Markdown" @@ -4057,11 +4065,11 @@ msgstr "Ajustes de XMPP" msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:805 ../../Zotlabs/Lib/Libzot.php:656 +#: ../../include/zot.php:805 ../../Zotlabs/Lib/Libzot.php:655 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2663 ../../Zotlabs/Lib/Libsync.php:737 +#: ../../include/zot.php:2663 ../../Zotlabs/Lib/Libsync.php:740 #, php-format msgid "Unable to verify site signature for %s" msgstr "No ha sido posible de verificar la firma del sitio para %s" @@ -4094,278 +4102,278 @@ msgstr "más antiguas" msgid "newer" msgstr "más recientes" -#: ../../include/text.php:1025 +#: ../../include/text.php:1018 msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:1037 ../../include/features.php:133 +#: ../../include/text.php:1030 ../../include/features.php:133 #: ../../Zotlabs/Module/Connections.php:375 ../../Zotlabs/Lib/Apps.php:333 msgid "Connections" msgstr "Conexiones" -#: ../../include/text.php:1045 ../../Zotlabs/Module/Viewconnections.php:80 +#: ../../include/text.php:1038 ../../Zotlabs/Module/Viewconnections.php:80 #: ../../Zotlabs/Module/Connections.php:289 msgid "Accepts" msgstr "Se acepta" -#: ../../include/text.php:1048 ../../Zotlabs/Module/Viewconnections.php:83 +#: ../../include/text.php:1041 ../../Zotlabs/Module/Viewconnections.php:83 #: ../../Zotlabs/Module/Connections.php:292 msgid "Comments" msgstr "Comentarios" -#: ../../include/text.php:1053 ../../Zotlabs/Module/Viewconnections.php:88 +#: ../../include/text.php:1046 ../../Zotlabs/Module/Viewconnections.php:88 #: ../../Zotlabs/Module/Connections.php:297 msgid "Stream items" msgstr "Elementos del stream" -#: ../../include/text.php:1058 ../../Zotlabs/Module/Viewconnections.php:93 +#: ../../include/text.php:1051 ../../Zotlabs/Module/Viewconnections.php:93 #: ../../Zotlabs/Module/Connections.php:302 msgid "Wall posts" msgstr "Entradas del Muro" -#: ../../include/text.php:1062 ../../Zotlabs/Module/Viewconnections.php:97 +#: ../../include/text.php:1055 ../../Zotlabs/Module/Viewconnections.php:97 #: ../../Zotlabs/Module/Connections.php:306 msgid "Nothing" msgstr "Nada" -#: ../../include/text.php:1077 +#: ../../include/text.php:1070 #, php-format msgid "View all %s connections" msgstr "Ver todas las %s conexiones" -#: ../../include/text.php:1140 +#: ../../include/text.php:1133 #, php-format msgid "Network: %s" msgstr "Red %s" -#: ../../include/text.php:1151 ../../include/text.php:1163 -#: ../../include/nav.php:194 ../../include/acl_selectors.php:148 +#: ../../include/text.php:1144 ../../include/text.php:1156 +#: ../../include/nav.php:194 ../../include/acl_selectors.php:149 #: ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Widget/Activity_filter.php:193 -#: ../../Zotlabs/Module/Search.php:46 ../../Zotlabs/Module/Connections.php:379 +#: ../../Zotlabs/Widget/Activity_filter.php:203 +#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Module/Connections.php:379 #: ../../Zotlabs/Lib/Apps.php:353 msgid "Search" msgstr "Buscar" -#: ../../include/text.php:1243 ../../include/text.php:1247 +#: ../../include/text.php:1236 ../../include/text.php:1240 msgid "poke" msgstr "un toque" -#: ../../include/text.php:1243 ../../include/text.php:1247 +#: ../../include/text.php:1236 ../../include/text.php:1240 #: ../../include/conversation.php:267 msgid "poked" msgstr "ha dado un toque a" -#: ../../include/text.php:1248 +#: ../../include/text.php:1241 msgid "ping" msgstr "un \"ping\"" -#: ../../include/text.php:1248 +#: ../../include/text.php:1241 msgid "pinged" msgstr "ha enviado un \"ping\" a" -#: ../../include/text.php:1249 +#: ../../include/text.php:1242 msgid "prod" msgstr "una incitación " -#: ../../include/text.php:1249 +#: ../../include/text.php:1242 msgid "prodded" msgstr "ha incitado a " -#: ../../include/text.php:1250 +#: ../../include/text.php:1243 msgid "slap" msgstr "una bofetada " -#: ../../include/text.php:1250 +#: ../../include/text.php:1243 msgid "slapped" msgstr "ha abofeteado a " -#: ../../include/text.php:1251 +#: ../../include/text.php:1244 msgid "finger" msgstr "un \"finger\" " -#: ../../include/text.php:1251 +#: ../../include/text.php:1244 msgid "fingered" msgstr "envió un \"finger\" a" -#: ../../include/text.php:1252 +#: ../../include/text.php:1245 msgid "rebuff" msgstr "un reproche" -#: ../../include/text.php:1252 +#: ../../include/text.php:1245 msgid "rebuffed" msgstr "ha hecho un reproche a " -#: ../../include/text.php:1275 +#: ../../include/text.php:1268 msgid "happy" msgstr "feliz " -#: ../../include/text.php:1276 +#: ../../include/text.php:1269 msgid "sad" msgstr "triste " -#: ../../include/text.php:1277 +#: ../../include/text.php:1270 msgid "mellow" msgstr "tranquilo/a" -#: ../../include/text.php:1278 +#: ../../include/text.php:1271 msgid "tired" msgstr "cansado/a " -#: ../../include/text.php:1279 +#: ../../include/text.php:1272 msgid "perky" msgstr "vivaz" -#: ../../include/text.php:1280 +#: ../../include/text.php:1273 msgid "angry" msgstr "enfadado/a" -#: ../../include/text.php:1281 +#: ../../include/text.php:1274 msgid "stupefied" msgstr "asombrado/a" -#: ../../include/text.php:1282 +#: ../../include/text.php:1275 msgid "puzzled" msgstr "perplejo/a" -#: ../../include/text.php:1283 +#: ../../include/text.php:1276 msgid "interested" msgstr "interesado/a" -#: ../../include/text.php:1284 +#: ../../include/text.php:1277 msgid "bitter" msgstr "amargado/a" -#: ../../include/text.php:1285 +#: ../../include/text.php:1278 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:1286 +#: ../../include/text.php:1279 msgid "alive" msgstr "animado/a" -#: ../../include/text.php:1287 +#: ../../include/text.php:1280 msgid "annoyed" msgstr "molesto/a" -#: ../../include/text.php:1288 +#: ../../include/text.php:1281 msgid "anxious" msgstr "ansioso/a" -#: ../../include/text.php:1289 +#: ../../include/text.php:1282 msgid "cranky" msgstr "de mal humor" -#: ../../include/text.php:1290 +#: ../../include/text.php:1283 msgid "disturbed" msgstr "perturbado/a" -#: ../../include/text.php:1291 +#: ../../include/text.php:1284 msgid "frustrated" msgstr "frustrado/a" -#: ../../include/text.php:1292 +#: ../../include/text.php:1285 msgid "depressed" msgstr "deprimido/a" -#: ../../include/text.php:1293 +#: ../../include/text.php:1286 msgid "motivated" msgstr "motivado/a" -#: ../../include/text.php:1294 +#: ../../include/text.php:1287 msgid "relaxed" msgstr "relajado/a" -#: ../../include/text.php:1295 +#: ../../include/text.php:1288 msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1483 ../../include/js_strings.php:99 +#: ../../include/text.php:1476 ../../include/js_strings.php:99 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1483 ../../include/js_strings.php:100 +#: ../../include/text.php:1476 ../../include/js_strings.php:100 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1483 ../../include/js_strings.php:101 +#: ../../include/text.php:1476 ../../include/js_strings.php:101 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1483 ../../include/js_strings.php:102 +#: ../../include/text.php:1476 ../../include/js_strings.php:102 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1483 ../../include/js_strings.php:103 +#: ../../include/text.php:1476 ../../include/js_strings.php:103 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1483 ../../include/js_strings.php:104 +#: ../../include/text.php:1476 ../../include/js_strings.php:104 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1483 ../../include/js_strings.php:98 +#: ../../include/text.php:1476 ../../include/js_strings.php:98 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1487 ../../include/js_strings.php:74 +#: ../../include/text.php:1480 ../../include/js_strings.php:74 msgid "January" msgstr "enero" -#: ../../include/text.php:1487 ../../include/js_strings.php:75 +#: ../../include/text.php:1480 ../../include/js_strings.php:75 msgid "February" msgstr "febrero" -#: ../../include/text.php:1487 ../../include/js_strings.php:76 +#: ../../include/text.php:1480 ../../include/js_strings.php:76 msgid "March" msgstr "marzo" -#: ../../include/text.php:1487 ../../include/js_strings.php:77 +#: ../../include/text.php:1480 ../../include/js_strings.php:77 msgid "April" msgstr "abril" -#: ../../include/text.php:1487 +#: ../../include/text.php:1480 msgid "May" msgstr "mayo" -#: ../../include/text.php:1487 ../../include/js_strings.php:79 +#: ../../include/text.php:1480 ../../include/js_strings.php:79 msgid "June" msgstr "junio" -#: ../../include/text.php:1487 ../../include/js_strings.php:80 +#: ../../include/text.php:1480 ../../include/js_strings.php:80 msgid "July" msgstr "julio" -#: ../../include/text.php:1487 ../../include/js_strings.php:81 +#: ../../include/text.php:1480 ../../include/js_strings.php:81 msgid "August" msgstr "agosto" -#: ../../include/text.php:1487 ../../include/js_strings.php:82 +#: ../../include/text.php:1480 ../../include/js_strings.php:82 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1487 ../../include/js_strings.php:83 +#: ../../include/text.php:1480 ../../include/js_strings.php:83 msgid "October" msgstr "octubre" -#: ../../include/text.php:1487 ../../include/js_strings.php:84 +#: ../../include/text.php:1480 ../../include/js_strings.php:84 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1487 ../../include/js_strings.php:85 +#: ../../include/text.php:1480 ../../include/js_strings.php:85 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1561 +#: ../../include/text.php:1556 msgid "Unknown Attachment" msgstr "Adjunto no reconocido" -#: ../../include/text.php:1563 ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../include/text.php:1558 ../../Zotlabs/Module/Sharedwithme.php:108 #: ../../Zotlabs/Storage/Browser.php:379 msgid "Size" msgstr "Tamaño" -#: ../../include/text.php:1563 ../../include/feedutils.php:873 +#: ../../include/text.php:1558 ../../include/feedutils.php:872 msgid "unknown" msgstr "desconocido" @@ -4373,71 +4381,71 @@ msgstr "desconocido" msgid "remove category" msgstr "eliminar el tema" -#: ../../include/text.php:1675 +#: ../../include/text.php:1676 msgid "remove from file" msgstr "eliminar del fichero" -#: ../../include/text.php:1844 ../../include/message.php:13 +#: ../../include/text.php:1845 ../../include/message.php:13 msgid "Download binary/encrypted content" msgstr "Descargar contenido binario o cifrado" -#: ../../include/text.php:1915 +#: ../../include/text.php:1916 msgid "Poll has ended." msgstr "La encuesta ha terminado" -#: ../../include/text.php:1918 +#: ../../include/text.php:1919 #, php-format msgid "Poll ends: %s" msgstr "Finales de la encuesta: %s" -#: ../../include/text.php:1923 ../../Zotlabs/Lib/ThreadItem.php:446 +#: ../../include/text.php:1924 ../../Zotlabs/Lib/ThreadItem.php:446 msgid "Vote" msgstr "Votar" -#: ../../include/text.php:2075 ../../Zotlabs/Module/Events.php:669 +#: ../../include/text.php:2076 ../../Zotlabs/Module/Events.php:669 msgid "Link to Source" msgstr "Enlazar con la entrada en su ubicación original" -#: ../../include/text.php:2097 ../../include/language.php:424 +#: ../../include/text.php:2098 ../../include/language.php:428 msgid "default" msgstr "por defecto" -#: ../../include/text.php:2105 +#: ../../include/text.php:2106 msgid "Page layout" msgstr "Plantilla de la página" -#: ../../include/text.php:2105 +#: ../../include/text.php:2106 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:2115 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Module/Wiki.php:371 +#: ../../include/text.php:2116 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:370 msgid "BBcode" msgstr "BBcode" -#: ../../include/text.php:2116 +#: ../../include/text.php:2117 msgid "HTML" msgstr "HTML" -#: ../../include/text.php:2118 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 +#: ../../include/text.php:2119 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 msgid "Text" msgstr "Texto" -#: ../../include/text.php:2119 +#: ../../include/text.php:2120 msgid "Comanche Layout" msgstr "Plantilla de Comanche" -#: ../../include/text.php:2124 +#: ../../include/text.php:2125 msgid "PHP" msgstr "PHP" -#: ../../include/text.php:2133 +#: ../../include/text.php:2134 msgid "Page content type" msgstr "Tipo de contenido de la página" -#: ../../include/text.php:2256 ../../include/event.php:1259 +#: ../../include/text.php:2257 ../../include/event.php:1259 #: ../../include/conversation.php:132 #: ../../Zotlabs/Module/Channel_calendar.php:221 #: ../../Zotlabs/Module/Like.php:441 ../../Zotlabs/Module/Tagger.php:75 @@ -4445,110 +4453,110 @@ msgstr "Tipo de contenido de la página" msgid "event" msgstr "el/su evento" -#: ../../include/text.php:2259 ../../include/conversation.php:158 -#: ../../include/bbcode.php:543 ../../include/markdown.php:204 -#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3229 +#: ../../include/text.php:2260 ../../include/conversation.php:158 +#: ../../include/bbcode.php:555 ../../include/markdown.php:204 +#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3264 msgid "post" msgstr "la entrada" -#: ../../include/text.php:2261 ../../include/conversation.php:160 +#: ../../include/text.php:2262 ../../include/conversation.php:160 #: ../../Zotlabs/Module/Tagger.php:81 msgid "comment" msgstr "el comentario" -#: ../../include/text.php:2266 +#: ../../include/text.php:2267 msgid "activity" msgstr "la/su actividad" -#: ../../include/text.php:2269 +#: ../../include/text.php:2270 msgid "poll" msgstr "encuesta" -#: ../../include/text.php:2370 +#: ../../include/text.php:2383 msgid "a-z, 0-9, -, and _ only" msgstr "a-z, 0-9, -, and _ only" -#: ../../include/text.php:2696 +#: ../../include/text.php:2709 msgid "Design Tools" msgstr "Herramientas de diseño web" -#: ../../include/text.php:2699 ../../Zotlabs/Module/Blocks.php:154 +#: ../../include/text.php:2712 ../../Zotlabs/Module/Blocks.php:154 msgid "Blocks" msgstr "Bloques" -#: ../../include/text.php:2700 ../../Zotlabs/Module/Menu.php:171 +#: ../../include/text.php:2713 ../../Zotlabs/Module/Menu.php:171 msgid "Menus" msgstr "Menús" -#: ../../include/text.php:2701 ../../Zotlabs/Module/Layouts.php:184 +#: ../../include/text.php:2714 ../../Zotlabs/Module/Layouts.php:184 msgid "Layouts" msgstr "Plantillas" -#: ../../include/text.php:2702 +#: ../../include/text.php:2715 msgid "Pages" msgstr "Páginas" -#: ../../include/text.php:2714 +#: ../../include/text.php:2727 msgid "Import" msgstr "Importar" -#: ../../include/text.php:2715 +#: ../../include/text.php:2728 msgid "Import website..." msgstr "Importar un sitio web..." -#: ../../include/text.php:2716 +#: ../../include/text.php:2729 msgid "Select folder to import" msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/text.php:2717 +#: ../../include/text.php:2730 msgid "Import from a zipped folder:" msgstr "Importar desde una carpeta comprimida: " -#: ../../include/text.php:2718 +#: ../../include/text.php:2731 msgid "Import from cloud files:" msgstr "Importar desde los ficheros en la nube: " -#: ../../include/text.php:2719 +#: ../../include/text.php:2732 msgid "/cloud/channel/path/to/folder" msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/text.php:2720 +#: ../../include/text.php:2733 msgid "Enter path to website files" msgstr "Ruta a los ficheros del sitio web" -#: ../../include/text.php:2721 +#: ../../include/text.php:2734 msgid "Select folder" msgstr "Seleccionar la carpeta" -#: ../../include/text.php:2722 +#: ../../include/text.php:2735 msgid "Export website..." msgstr "Exportar un sitio web..." -#: ../../include/text.php:2723 +#: ../../include/text.php:2736 msgid "Export to a zip file" msgstr "Exportar a un fichero comprimido .zip" -#: ../../include/text.php:2724 +#: ../../include/text.php:2737 msgid "website.zip" msgstr "sitio_web.zip" -#: ../../include/text.php:2725 +#: ../../include/text.php:2738 msgid "Enter a name for the zip file." msgstr "Escriba un nombre para el fichero zip." -#: ../../include/text.php:2726 +#: ../../include/text.php:2739 msgid "Export to cloud files" msgstr "Exportar a la nube de ficheros" -#: ../../include/text.php:2727 +#: ../../include/text.php:2740 msgid "/path/to/export/folder" msgstr "/ruta/para/exportar/carpeta" -#: ../../include/text.php:2728 +#: ../../include/text.php:2741 msgid "Enter a path to a cloud files destination." msgstr "Escriba una ruta de destino a la nube de ficheros." -#: ../../include/text.php:2729 +#: ../../include/text.php:2742 msgid "Specify folder" msgstr "Especificar una carpeta" @@ -4570,7 +4578,7 @@ msgid "Finishes:" msgstr "Finaliza:" #: ../../include/event.php:63 ../../include/event.php:134 -#: ../../include/channel.php:1634 ../../Zotlabs/Module/Directory.php:354 +#: ../../include/channel.php:1658 ../../Zotlabs/Module/Directory.php:354 msgid "Location:" msgstr "Ubicación:" @@ -4611,13 +4619,13 @@ msgid "Cancelled" msgstr "Cancelado/a" #: ../../include/event.php:1422 ../../include/connections.php:734 -#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:794 +#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Profiles.php:794 #: ../../Zotlabs/Module/Connedit.php:925 msgid "Mobile" msgstr "Móvil" #: ../../include/event.php:1423 ../../include/connections.php:735 -#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Profiles.php:795 #: ../../Zotlabs/Module/Connedit.php:926 msgid "Home" msgstr "Inicio" @@ -4631,7 +4639,7 @@ msgid "Home, Fax" msgstr "Fax particular" #: ../../include/event.php:1426 ../../include/connections.php:738 -#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Profiles.php:796 +#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Profiles.php:796 #: ../../Zotlabs/Module/Connedit.php:927 msgid "Work" msgstr "Trabajo" @@ -4648,7 +4656,7 @@ msgstr "Fax de trabajo" #: ../../include/selectors.php:60 ../../include/selectors.php:77 #: ../../include/selectors.php:115 ../../include/selectors.php:151 #: ../../include/connections.php:741 ../../include/connections.php:748 -#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Profiles.php:797 +#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:797 #: ../../Zotlabs/Module/Connedit.php:928 #: ../../Zotlabs/Access/PermissionRoles.php:310 msgid "Other" @@ -4666,8 +4674,8 @@ msgstr "Desactivado" msgid "On" msgstr "Activado" -#: ../../include/features.php:82 ../../include/nav.php:464 -#: ../../include/nav.php:467 ../../Zotlabs/Lib/Apps.php:346 +#: ../../include/features.php:82 ../../include/nav.php:463 +#: ../../include/nav.php:466 ../../Zotlabs/Lib/Apps.php:346 msgid "Calendar" msgstr "Calendario" @@ -4707,11 +4715,11 @@ msgstr "Nube de etiquetas" 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:124 ../../include/features.php:359 +#: ../../include/features.php:124 ../../include/features.php:358 msgid "Use blog/list mode" msgstr "Usar el modo blog/lista" -#: ../../include/features.php:125 ../../include/features.php:360 +#: ../../include/features.php:125 ../../include/features.php:359 msgid "Comments will be displayed separately" msgstr "Los comentarios se mostrarán por separado" @@ -4783,195 +4791,195 @@ msgstr "Temas de las entradas" msgid "Add categories to your posts" msgstr "Añadir temas a sus publicaciones" -#: ../../include/features.php:219 +#: ../../include/features.php:218 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:220 +#: ../../include/features.php:219 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:227 +#: ../../include/features.php:226 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:228 +#: ../../include/features.php:227 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:235 +#: ../../include/features.php:234 msgid "Disable Comments" msgstr "Deshabilitar comentarios" -#: ../../include/features.php:236 +#: ../../include/features.php:235 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:243 +#: ../../include/features.php:242 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:244 +#: ../../include/features.php:243 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:251 +#: ../../include/features.php:250 msgid "Content Expiration" msgstr "Caducidad del contenido" -#: ../../include/features.php:252 +#: ../../include/features.php:251 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:259 +#: ../../include/features.php:258 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:260 +#: ../../include/features.php:259 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:267 +#: ../../include/features.php:266 msgid "Auto-save drafts of posts and comments" msgstr "Guardar automáticamente borradores de entradas y comentarios" -#: ../../include/features.php:268 +#: ../../include/features.php:267 msgid "" "Automatically saves post and comment drafts in local browser storage to help" " prevent accidental loss of compositions" msgstr "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones." -#: ../../include/features.php:277 +#: ../../include/features.php:276 msgid "Manage" msgstr "Gestionar" -#: ../../include/features.php:281 +#: ../../include/features.php:280 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:282 +#: ../../include/features.php:281 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:291 ../../Zotlabs/Module/Connections.php:333 +#: ../../include/features.php:290 ../../Zotlabs/Module/Connections.php:333 msgid "Network" msgstr "Red" -#: ../../include/features.php:295 +#: ../../include/features.php:294 msgid "Events Filter" msgstr "Filtro de eventos" -#: ../../include/features.php:296 +#: ../../include/features.php:295 msgid "Ability to display only events" msgstr "Capacidad para mostrar solo eventos" -#: ../../include/features.php:303 +#: ../../include/features.php:302 msgid "Polls Filter" msgstr "Filtro de encuestas" -#: ../../include/features.php:304 +#: ../../include/features.php:303 msgid "Ability to display only polls" msgstr "Capacidad para mostrar solo encuestas" -#: ../../include/features.php:311 ../../Zotlabs/Widget/Savedsearch.php:83 +#: ../../include/features.php:310 ../../Zotlabs/Widget/Savedsearch.php:83 msgid "Saved Searches" msgstr "Búsquedas guardadas" -#: ../../include/features.php:312 +#: ../../include/features.php:311 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:319 ../../include/contact_widgets.php:53 -#: ../../Zotlabs/Widget/Activity_filter.php:179 +#: ../../include/features.php:318 ../../include/contact_widgets.php:53 +#: ../../Zotlabs/Widget/Activity_filter.php:189 #: ../../Zotlabs/Widget/Filer.php:28 msgid "Saved Folders" msgstr "Carpetas guardadas" -#: ../../include/features.php:320 +#: ../../include/features.php:319 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:327 +#: ../../include/features.php:326 msgid "Alternate Stream Order" msgstr "Orden de stream alternativo" -#: ../../include/features.php:328 +#: ../../include/features.php:327 msgid "" "Ability to order the stream by last post date, last comment date or " "unthreaded activities" msgstr "Posibilidad de ordenar el stream por última fecha de publicación, última fecha de comentario o actividades sin hilo" -#: ../../include/features.php:335 +#: ../../include/features.php:334 msgid "Contact Filter" msgstr "Filtro de contactos" -#: ../../include/features.php:336 +#: ../../include/features.php:335 msgid "Ability to display only posts of a selected contact" msgstr "Posibilidad de mostrar sólo los mensajes de un contacto seleccionado" -#: ../../include/features.php:343 +#: ../../include/features.php:342 msgid "Forum Filter" msgstr "Filtro de foro" -#: ../../include/features.php:344 +#: ../../include/features.php:343 msgid "Ability to display only posts of a specific forum" msgstr "Posibilidad de mostrar sólo los mensajes de un foro específico" -#: ../../include/features.php:351 +#: ../../include/features.php:350 msgid "Personal Posts Filter" msgstr "Filtro de entradas personales" -#: ../../include/features.php:352 +#: ../../include/features.php:351 msgid "Ability to display only posts that you've interacted on" msgstr "Posibilidad de mostrar sólo los mensajes en los que usted haya interactuado" -#: ../../include/features.php:369 ../../include/nav.php:445 +#: ../../include/features.php:368 ../../include/nav.php:444 #: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:345 msgid "Photos" msgstr "Fotos" -#: ../../include/features.php:373 +#: ../../include/features.php:372 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:374 +#: ../../include/features.php:373 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:383 ../../Zotlabs/Lib/Apps.php:363 +#: ../../include/features.php:382 ../../Zotlabs/Lib/Apps.php:363 msgid "Profiles" msgstr "Perfiles" -#: ../../include/features.php:387 +#: ../../include/features.php:386 msgid "Advanced Profiles" msgstr "Perfiles avanzados" -#: ../../include/features.php:388 +#: ../../include/features.php:387 msgid "Additional profile sections and selections" msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/features.php:395 +#: ../../include/features.php:394 msgid "Profile Import/Export" msgstr "Importar/Exportar perfil" -#: ../../include/features.php:396 +#: ../../include/features.php:395 msgid "Save and load profile details across sites/channels" msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../include/features.php:403 +#: ../../include/features.php:402 msgid "Multiple Profiles" msgstr "Múltiples perfiles" -#: ../../include/features.php:404 +#: ../../include/features.php:403 msgid "Ability to create multiple profiles" msgstr "Capacidad de crear múltiples perfiles" -#: ../../include/security.php:608 +#: ../../include/security.php:607 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." @@ -5010,7 +5018,7 @@ msgstr "%s contraer" msgid "Password too short" msgstr "Contraseña demasiado corta" -#: ../../include/js_strings.php:12 +#: ../../include/js_strings.php:12 ../../Zotlabs/Module/Register.php:158 msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" @@ -5060,7 +5068,7 @@ msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" #: ../../include/js_strings.php:25 ../../Zotlabs/Module/Pubsites.php:53 -#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:483 +#: ../../Zotlabs/Module/Cdav.php:1016 ../../Zotlabs/Module/Events.php:483 #: ../../Zotlabs/Module/Profiles.php:511 ../../Zotlabs/Module/Profiles.php:736 #: ../../Zotlabs/Module/Locs.php:128 msgid "Location" @@ -5120,7 +5128,7 @@ msgstr "Anclado/a" msgid "Pin to the top" msgstr "Anclar en la parte superior" -#: ../../include/js_strings.php:39 ../../Zotlabs/Widget/Pinned.php:157 +#: ../../include/js_strings.php:39 ../../Zotlabs/Widget/Pinned.php:155 #: ../../Zotlabs/Lib/ThreadItem.php:473 msgid "Unpin from the top" msgstr "Desanclar de la parte superior" @@ -5319,12 +5327,16 @@ msgstr "Todos los días" msgid "Please stand by while your download is being prepared." msgstr "Por favor, espere mientras se prepara la descarga." +#: ../../include/js_strings.php:122 +msgid "Email address not valid" +msgstr "Dirección de correo electrónica no válida" + #: ../../include/help.php:80 msgid "Help:" msgstr "Ayuda:" #: ../../include/help.php:117 ../../include/help.php:125 -#: ../../include/nav.php:180 ../../include/nav.php:321 +#: ../../include/nav.php:180 ../../include/nav.php:320 #: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:348 msgid "Help" msgstr "Ayuda" @@ -5336,7 +5348,7 @@ msgstr "No encontrado" #: ../../include/help.php:132 ../../Zotlabs/Module/Display.php:136 #: ../../Zotlabs/Module/Display.php:153 ../../Zotlabs/Module/Display.php:173 #: ../../Zotlabs/Module/Display.php:179 ../../Zotlabs/Module/Page.php:136 -#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Lib/NativeWikiPage.php:520 +#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Lib/NativeWikiPage.php:533 #: ../../Zotlabs/Web/Router.php:186 msgid "Page not found." msgstr "Página no encontrada." @@ -5369,7 +5381,7 @@ 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:666 ../../include/nav.php:448 +#: ../../include/photos.php:666 ../../include/nav.php:447 msgid "Photo Albums" msgstr "Álbumes de fotos" @@ -5382,43 +5394,43 @@ msgstr "Fotos recientes" msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../include/network.php:1758 ../../include/network.php:1759 +#: ../../include/network.php:1762 ../../include/network.php:1763 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1760 +#: ../../include/network.php:1764 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1761 +#: ../../include/network.php:1765 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:1762 +#: ../../include/network.php:1766 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1765 +#: ../../include/network.php:1769 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1766 +#: ../../include/network.php:1770 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1767 +#: ../../include/network.php:1771 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:1768 +#: ../../include/network.php:1772 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1769 +#: ../../include/network.php:1773 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1770 +#: ../../include/network.php:1774 msgid "MySpace" msgstr "MySpace" @@ -5452,8 +5464,8 @@ msgid_plural "%d invitations available" msgstr[0] "%d invitación pendiente" msgstr[1] "%d invitaciones disponibles" -#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:144 -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:145 +#: ../../Zotlabs/Module/Admin/Site.php:416 msgid "Advanced" msgstr "Avanzado" @@ -5508,7 +5520,7 @@ msgstr "Todo" #: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 #: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 #: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../Zotlabs/Module/Cdav.php:1070 ../../Zotlabs/Storage/Browser.php:293 +#: ../../Zotlabs/Module/Cdav.php:1071 ../../Zotlabs/Storage/Browser.php:293 #: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 msgid "Categories" msgstr "Temas" @@ -5522,7 +5534,7 @@ msgstr "Conexiones comunes" msgid "View all %d common connections" msgstr "Ver todas las %d conexiones comunes" -#: ../../include/language.php:437 +#: ../../include/language.php:441 msgid "Select an alternate language" msgstr "Seleccionar un idioma alternativo" @@ -5556,9 +5568,9 @@ msgstr "Administración de canales" msgid "Manage your channels" msgstr "Gestionar sus canales" -#: ../../include/nav.php:104 ../../include/group.php:321 -#: ../../include/acl_selectors.php:86 -#: ../../Zotlabs/Widget/Activity_filter.php:82 +#: ../../include/nav.php:104 ../../include/group.php:327 +#: ../../include/acl_selectors.php:87 +#: ../../Zotlabs/Widget/Activity_filter.php:88 #: ../../Zotlabs/Module/Group.php:142 ../../Zotlabs/Module/Group.php:154 #: ../../Zotlabs/Lib/Group.php:324 ../../Zotlabs/Lib/Apps.php:364 msgid "Privacy Groups" @@ -5580,7 +5592,7 @@ msgid "Account/Channel Settings" msgstr "Ajustes de cuenta/canales" #: ../../include/nav.php:112 ../../include/nav.php:142 -#: ../../include/nav.php:163 ../../boot.php:1710 +#: ../../include/nav.php:163 ../../boot.php:1715 msgid "Logout" msgstr "Finalizar sesión" @@ -5592,7 +5604,7 @@ msgstr "Finalizar esta sesión" msgid "Your profile page" msgstr "Su página del perfil" -#: ../../include/nav.php:118 ../../include/channel.php:1539 +#: ../../include/nav.php:118 ../../include/channel.php:1563 #: ../../Zotlabs/Module/Profiles.php:832 msgid "Edit Profiles" msgstr "Editar perfiles" @@ -5606,7 +5618,7 @@ msgid "Edit your profile" msgstr "Editar su perfil" #: ../../include/nav.php:127 ../../include/nav.php:131 -#: ../../Zotlabs/Lib/Apps.php:336 ../../boot.php:1711 +#: ../../Zotlabs/Lib/Apps.php:336 ../../boot.php:1716 msgid "Login" msgstr "Iniciar sesión" @@ -5622,8 +5634,8 @@ msgstr "Volver a la página principal" msgid "Log me out of this site" msgstr "Salir de este sitio" -#: ../../include/nav.php:168 ../../Zotlabs/Module/Register.php:293 -#: ../../boot.php:1691 +#: ../../include/nav.php:168 ../../Zotlabs/Module/Register.php:566 +#: ../../boot.php:1696 msgid "Register" msgstr "Registrarse" @@ -5647,104 +5659,104 @@ msgstr "Administrador" msgid "Site Setup and Configuration" msgstr "Ajustes y configuración del sitio" -#: ../../include/nav.php:325 ../../Zotlabs/Widget/Notifications.php:182 +#: ../../include/nav.php:324 ../../Zotlabs/Widget/Notifications.php:182 #: ../../Zotlabs/Module/New_channel.php:157 #: ../../Zotlabs/Module/New_channel.php:164 #: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 msgid "Loading" msgstr "Cargando" -#: ../../include/nav.php:331 +#: ../../include/nav.php:330 msgid "@name, !forum, #tag, ?doc, content" msgstr "@nombre, !foro, #tag, ?docs, contenido" -#: ../../include/nav.php:332 +#: ../../include/nav.php:331 msgid "Please wait..." msgstr "Espere por favor…" -#: ../../include/nav.php:338 +#: ../../include/nav.php:337 msgid "Add Apps" msgstr "Añadir aplicaciones" -#: ../../include/nav.php:339 +#: ../../include/nav.php:338 msgid "Arrange Apps" msgstr "Organizar aplicaciones" -#: ../../include/nav.php:340 +#: ../../include/nav.php:339 msgid "Toggle System Apps" msgstr "Alternar aplicaciones de sistema" -#: ../../include/nav.php:422 ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/nav.php:421 ../../Zotlabs/Module/Admin/Channels.php:154 msgid "Channel" msgstr "Canal" -#: ../../include/nav.php:425 +#: ../../include/nav.php:424 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/nav.php:435 ../../Zotlabs/Module/Help.php:83 +#: ../../include/nav.php:434 ../../Zotlabs/Module/Help.php:83 msgid "About" msgstr "Mi perfil" -#: ../../include/nav.php:438 +#: ../../include/nav.php:437 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/nav.php:453 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../include/nav.php:452 ../../Zotlabs/Module/Fbrowser.php:85 #: ../../Zotlabs/Lib/Apps.php:340 ../../Zotlabs/Storage/Browser.php:351 msgid "Files" msgstr "Ficheros" -#: ../../include/nav.php:456 +#: ../../include/nav.php:455 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/nav.php:478 ../../include/nav.php:481 +#: ../../include/nav.php:477 ../../include/nav.php:480 #: ../../Zotlabs/Widget/Chatroom_list.php:16 ../../Zotlabs/Lib/Apps.php:330 msgid "Chatrooms" msgstr "Salas de chat" -#: ../../include/nav.php:491 ../../Zotlabs/Lib/Apps.php:329 +#: ../../include/nav.php:490 ../../Zotlabs/Lib/Apps.php:329 msgid "Bookmarks" msgstr "Marcadores" -#: ../../include/nav.php:494 +#: ../../include/nav.php:493 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/nav.php:502 ../../Zotlabs/Module/Cards.php:207 +#: ../../include/nav.php:501 ../../Zotlabs/Module/Cards.php:207 #: ../../Zotlabs/Lib/Apps.php:326 msgid "Cards" msgstr "Fichas" -#: ../../include/nav.php:505 +#: ../../include/nav.php:504 msgid "View Cards" msgstr "Ver las fichas" -#: ../../include/nav.php:513 ../../Zotlabs/Module/Articles.php:225 +#: ../../include/nav.php:512 ../../Zotlabs/Module/Articles.php:225 #: ../../Zotlabs/Lib/Apps.php:325 msgid "Articles" msgstr "Artículos" -#: ../../include/nav.php:516 +#: ../../include/nav.php:515 msgid "View Articles" msgstr "Ver los artículos" -#: ../../include/nav.php:525 ../../Zotlabs/Module/Webpages.php:252 +#: ../../include/nav.php:524 ../../Zotlabs/Module/Webpages.php:252 #: ../../Zotlabs/Lib/Apps.php:341 msgid "Webpages" msgstr "Páginas web" -#: ../../include/nav.php:528 +#: ../../include/nav.php:527 msgid "View Webpages" msgstr "Ver páginas web" -#: ../../include/nav.php:537 ../../Zotlabs/Widget/Wiki_list.php:15 -#: ../../Zotlabs/Module/Wiki.php:206 +#: ../../include/nav.php:536 ../../Zotlabs/Widget/Wiki_list.php:15 +#: ../../Zotlabs/Module/Wiki.php:205 msgid "Wikis" msgstr "Wikis" -#: ../../include/nav.php:540 ../../Zotlabs/Lib/Apps.php:342 +#: ../../include/nav.php:539 ../../Zotlabs/Lib/Apps.php:342 msgid "Wiki" msgstr "Wiki" @@ -5781,7 +5793,7 @@ msgstr "Edad:" msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/datetime.php:238 ../../boot.php:2715 +#: ../../include/datetime.php:238 ../../boot.php:2730 msgid "never" msgstr "nunca" @@ -6002,9 +6014,9 @@ msgstr "Seleccionar" #: ../../include/conversation.php:730 ../../include/conversation.php:777 #: ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Card_edit.php:130 ../../Zotlabs/Module/Oauth.php:174 -#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Cdav.php:1056 -#: ../../Zotlabs/Module/Cdav.php:1389 ../../Zotlabs/Module/Webpages.php:257 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Cdav.php:1057 +#: ../../Zotlabs/Module/Cdav.php:1390 ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Module/Admin/Accounts.php:320 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:176 #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:139 @@ -6037,7 +6049,7 @@ msgid "Message signature incorrect" msgstr "Firma de mensaje incorrecta" #: ../../include/conversation.php:776 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Accounts.php:318 #: ../../Zotlabs/Module/Connections.php:343 msgid "Approve" msgstr "Aprobar" @@ -6055,19 +6067,19 @@ msgstr "Temas:" msgid "Filed under:" msgstr "Archivado bajo:" -#: ../../include/conversation.php:809 ../../Zotlabs/Widget/Pinned.php:133 +#: ../../include/conversation.php:809 ../../Zotlabs/Widget/Pinned.php:132 #: ../../Zotlabs/Lib/ThreadItem.php:430 #, php-format msgid "from %s" msgstr "desde %s" -#: ../../include/conversation.php:812 ../../Zotlabs/Widget/Pinned.php:136 +#: ../../include/conversation.php:812 ../../Zotlabs/Widget/Pinned.php:135 #: ../../Zotlabs/Lib/ThreadItem.php:433 #, php-format msgid "last edited: %s" msgstr "último cambio: %s" -#: ../../include/conversation.php:813 ../../Zotlabs/Widget/Pinned.php:137 +#: ../../include/conversation.php:813 ../../Zotlabs/Widget/Pinned.php:136 #: ../../Zotlabs/Lib/ThreadItem.php:434 #, php-format msgid "Expires: %s" @@ -6115,7 +6127,7 @@ msgid "Recent Activity" msgstr "Actividad reciente" #: ../../include/conversation.php:1103 ../../include/connections.php:110 -#: ../../include/channel.php:1619 ../../Zotlabs/Widget/Suggestions.php:46 +#: ../../include/channel.php:1643 ../../Zotlabs/Widget/Suggestions.php:46 #: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Module/Directory.php:370 #: ../../Zotlabs/Module/Connections.php:350 #: ../../Zotlabs/Module/Suggest.php:71 @@ -6127,6 +6139,7 @@ msgid "Edit Connection" msgstr "Editar conexión" #: ../../include/conversation.php:1123 +#: ../../Zotlabs/Module/Admin/Accounts.php:347 msgid "Message" msgstr "Mensaje" @@ -6185,40 +6198,40 @@ msgstr "A %s le gusta esto." msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1465 +#: ../../include/conversation.php:1464 msgid "Toggle poll" msgstr "Activar o desactivar encuestas" -#: ../../include/conversation.php:1466 +#: ../../include/conversation.php:1465 msgid "Option" msgstr "Opción" -#: ../../include/conversation.php:1467 +#: ../../include/conversation.php:1466 msgid "Add option" msgstr "Añadir una opción" -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Minutes" msgstr "Minutos " -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Hours" msgstr "Horas " -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Days" msgstr "Días " -#: ../../include/conversation.php:1469 +#: ../../include/conversation.php:1468 msgid "Allow multiple answers" msgstr "Permitir respuestas múltiples" -#: ../../include/conversation.php:1479 +#: ../../include/conversation.php:1478 msgid "Summary (optional)" msgstr "Sumario (opcional)" -#: ../../include/conversation.php:1753 ../../include/taxonomy.php:670 -#: ../../include/channel.php:1782 ../../Zotlabs/Module/Photos.php:1136 +#: ../../include/conversation.php:1752 ../../include/taxonomy.php:670 +#: ../../include/channel.php:1806 ../../Zotlabs/Module/Photos.php:1136 #: ../../Zotlabs/Lib/ThreadItem.php:243 msgctxt "noun" msgid "Like" @@ -6226,7 +6239,7 @@ msgid_plural "Likes" msgstr[0] "Me gusta" msgstr[1] "Me gusta" -#: ../../include/conversation.php:1756 ../../Zotlabs/Module/Photos.php:1141 +#: ../../include/conversation.php:1755 ../../Zotlabs/Module/Photos.php:1141 #: ../../Zotlabs/Lib/ThreadItem.php:248 msgctxt "noun" msgid "Dislike" @@ -6234,42 +6247,42 @@ msgid_plural "Dislikes" msgstr[0] "No me gusta" msgstr[1] "No me gusta" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1758 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1761 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1765 +#: ../../include/conversation.php:1764 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1767 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1770 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1773 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -6336,11 +6349,11 @@ msgstr "Transexual" msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/selectors.php:60 ../../include/channel.php:1727 +#: ../../include/selectors.php:60 ../../include/channel.php:1751 msgid "Neuter" msgstr "Neutral" -#: ../../include/selectors.php:60 ../../include/channel.php:1729 +#: ../../include/selectors.php:60 ../../include/channel.php:1753 msgid "Non-specific" msgstr "No especificado" @@ -6437,8 +6450,7 @@ msgid "Sex Addict" msgstr "Con adicción al sexo" #: ../../include/selectors.php:134 ../../include/channel.php:506 -#: ../../include/channel.php:507 ../../include/channel.php:514 -#: ../../Zotlabs/Widget/Affinity.php:32 +#: ../../include/channel.php:509 ../../Zotlabs/Widget/Affinity.php:32 #: ../../Zotlabs/Module/Settings/Channel.php:71 #: ../../Zotlabs/Module/Settings/Channel.php:75 #: ../../Zotlabs/Module/Settings/Channel.php:76 @@ -6547,28 +6559,28 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos que ya existen sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." -#: ../../include/group.php:265 ../../Zotlabs/Lib/Group.php:270 +#: ../../include/group.php:271 ../../Zotlabs/Lib/Group.php:270 msgid "Add new connections to this privacy group" msgstr "Añadir conexiones nuevas a este grupo de canales" -#: ../../include/group.php:299 ../../Zotlabs/Lib/AccessList.php:311 +#: ../../include/group.php:305 ../../Zotlabs/Lib/AccessList.php:311 #: ../../Zotlabs/Lib/Group.php:302 msgid "edit" msgstr "editar" -#: ../../include/group.php:322 ../../Zotlabs/Lib/Group.php:325 +#: ../../include/group.php:328 ../../Zotlabs/Lib/Group.php:325 msgid "Edit group" msgstr "Editar grupo" -#: ../../include/group.php:323 ../../Zotlabs/Lib/Group.php:326 +#: ../../include/group.php:329 ../../Zotlabs/Lib/Group.php:326 msgid "Add privacy group" msgstr "Añadir un grupo de canales" -#: ../../include/group.php:324 ../../Zotlabs/Lib/Group.php:327 +#: ../../include/group.php:330 ../../Zotlabs/Lib/Group.php:327 msgid "Channels not in any privacy group" msgstr "Sin canales en ningún grupo" -#: ../../include/group.php:326 ../../Zotlabs/Widget/Savedsearch.php:84 +#: ../../include/group.php:332 ../../Zotlabs/Widget/Savedsearch.php:84 #: ../../Zotlabs/Lib/AccessList.php:336 ../../Zotlabs/Lib/Group.php:329 msgid "add" msgstr "añadir" @@ -6618,177 +6630,199 @@ msgstr "no me gusta" msgid "dislikes" msgstr "no gusta de" -#: ../../include/items.php:1001 ../../include/items.php:1061 +#: ../../include/items.php:1037 ../../include/items.php:1097 msgid "(Unknown)" msgstr "(Desconocido)" -#: ../../include/items.php:1249 +#: ../../include/items.php:1301 msgid "Visible to anybody on the internet." msgstr "Visible para cualquiera en internet." -#: ../../include/items.php:1251 +#: ../../include/items.php:1303 msgid "Visible to you only." msgstr "Visible sólo para usted." -#: ../../include/items.php:1253 +#: ../../include/items.php:1305 msgid "Visible to anybody in this network." msgstr "Visible para cualquiera en esta red." -#: ../../include/items.php:1255 +#: ../../include/items.php:1307 msgid "Visible to anybody authenticated." msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/items.php:1257 +#: ../../include/items.php:1309 #, php-format msgid "Visible to anybody on %s." msgstr "Visible para cualquiera en %s." -#: ../../include/items.php:1259 +#: ../../include/items.php:1311 msgid "Visible to all connections." msgstr "Visible para todas las conexiones." -#: ../../include/items.php:1261 +#: ../../include/items.php:1313 msgid "Visible to approved connections." msgstr "Visible para las conexiones permitidas." -#: ../../include/items.php:1263 +#: ../../include/items.php:1315 msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:4493 ../../Zotlabs/Module/Group.php:62 +#: ../../include/items.php:4584 ../../Zotlabs/Module/Group.php:62 #: ../../Zotlabs/Module/Group.php:214 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." -#: ../../include/items.php:4509 +#: ../../include/items.php:4600 msgid "Privacy group is empty." msgstr "El grupo de canales está vacío." -#: ../../include/items.php:4516 +#: ../../include/items.php:4607 #, php-format msgid "Privacy group: %s" msgstr "Grupo de canales: %s" -#: ../../include/items.php:4526 ../../Zotlabs/Module/Connedit.php:860 +#: ../../include/items.php:4617 ../../Zotlabs/Module/Connedit.php:860 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../include/items.php:4528 +#: ../../include/items.php:4619 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/items.php:4875 ../../Zotlabs/Module/Cover_photo.php:297 +#: ../../include/items.php:4965 ../../Zotlabs/Module/Cover_photo.php:297 msgid "female" msgstr "mujer" -#: ../../include/items.php:4876 ../../Zotlabs/Module/Cover_photo.php:298 +#: ../../include/items.php:4966 ../../Zotlabs/Module/Cover_photo.php:298 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4877 ../../Zotlabs/Module/Cover_photo.php:299 +#: ../../include/items.php:4967 ../../Zotlabs/Module/Cover_photo.php:299 msgid "male" msgstr "hombre" -#: ../../include/items.php:4878 ../../Zotlabs/Module/Cover_photo.php:300 +#: ../../include/items.php:4968 ../../Zotlabs/Module/Cover_photo.php:300 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4880 ../../Zotlabs/Module/Cover_photo.php:302 +#: ../../include/items.php:4970 ../../Zotlabs/Module/Cover_photo.php:302 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4882 +#: ../../include/items.php:4972 msgid "profile photo" msgstr "foto del perfil" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 #, php-format msgid "[Edited %s]" msgstr "[se ha editado %s]" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 msgctxt "edit_activity" msgid "Post" msgstr "Publicar" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 msgctxt "edit_activity" msgid "Comment" msgstr "Comentar" #: ../../include/account.php:38 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" +msgid "The provided email address is not valid" +msgstr "La dirección de correo electrónico proporcionada no es válida" #: ../../include/account.php:40 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." +msgid "The provided email domain is not among those allowed on this site" +msgstr "El dominio de correo electrónico proporcionado no está entre los permitidos en este sitio" -#: ../../include/account.php:46 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." +#: ../../include/account.php:51 +msgid "The provided email address is already registered at this site" +msgstr "La dirección de correo electrónico proporcionada ya está registrada en este sitio" -#: ../../include/account.php:78 +#: ../../include/account.php:88 msgid "An invitation is required." msgstr "Es obligatorio que le inviten." -#: ../../include/account.php:82 +#: ../../include/account.php:97 msgid "Invitation could not be verified." msgstr "No se ha podido verificar su invitación." -#: ../../include/account.php:158 +#: ../../include/account.php:185 msgid "Please enter the required information." msgstr "Por favor introduzca la información requerida." -#: ../../include/account.php:225 +#: ../../include/account.php:252 ../../include/account.php:360 msgid "Failed to store account information." msgstr "La información de la cuenta no se ha podido guardar." -#: ../../include/account.php:313 +#: ../../include/account.php:429 ../../include/account.php:497 +#: ../../Zotlabs/Module/Register.php:352 #, php-format msgid "Registration confirmation for %s" msgstr "Confirmación de registro para %s" -#: ../../include/account.php:382 +#: ../../include/account.php:572 #, php-format msgid "Registration request at %s" msgstr "Solicitud de registro en %s" -#: ../../include/account.php:404 +#: ../../include/account.php:594 msgid "your registration password" msgstr "su contraseña de registro" -#: ../../include/account.php:410 ../../include/account.php:473 +#: ../../include/account.php:600 ../../include/account.php:689 #, php-format msgid "Registration details for %s" msgstr "Detalles del registro de %s" -#: ../../include/account.php:484 +#: ../../include/account.php:700 msgid "Account approved." msgstr "Cuenta aprobada." -#: ../../include/account.php:524 +#: ../../include/account.php:756 #, php-format msgid "Registration revoked for %s" msgstr "Registro revocado para %s" -#: ../../include/account.php:807 ../../include/account.php:809 +#: ../../include/account.php:763 +#, php-format +msgid "Could not revoke registration for %s" +msgstr "No se ha podido revocar el registro de %s" + +#: ../../include/account.php:1179 ../../include/account.php:1181 msgid "Click here to upgrade." msgstr "Pulse aquí para actualizar" -#: ../../include/account.php:815 +#: ../../include/account.php:1187 msgid "This action exceeds the limits set by your subscription plan." msgstr "Esta acción supera los límites establecidos por su plan de suscripción " -#: ../../include/account.php:820 +#: ../../include/account.php:1192 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../include/photo/photo_driver.php:434 +#: ../../include/account.php:1252 +msgid "open" +msgstr "abierto" + +#: ../../include/account.php:1252 +msgid "closed" +msgstr "cerrado" + +#: ../../include/account.php:1259 +msgid "Registration is currently" +msgstr "El registro está actualmente " + +#: ../../include/account.php:1268 +msgid "please come back" +msgstr "por favor, vuelva" + +#: ../../include/photo/photo_driver.php:435 #: ../../Zotlabs/Module/Profile_photo.php:147 #: ../../Zotlabs/Module/Profile_photo.php:284 msgid "Profile Photos" @@ -6871,8 +6905,8 @@ msgstr "%sha compartido un/una %scon usted" msgid "%1$s's bookmarks" msgstr "Marcadores de %1$s" -#: ../../include/menu.php:120 ../../include/channel.php:1539 -#: ../../include/channel.php:1543 ../../Zotlabs/Widget/Cdav.php:138 +#: ../../include/menu.php:120 ../../include/channel.php:1563 +#: ../../include/channel.php:1567 ../../Zotlabs/Widget/Cdav.php:138 #: ../../Zotlabs/Widget/Cdav.php:175 ../../Zotlabs/Module/Article_edit.php:98 #: ../../Zotlabs/Module/Group.php:253 ../../Zotlabs/Module/Card_edit.php:99 #: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Editwebpage.php:142 @@ -6884,84 +6918,84 @@ msgstr "Marcadores de %1$s" #: ../../Zotlabs/Module/Connections.php:363 #: ../../Zotlabs/Module/Connections.php:383 ../../Zotlabs/Module/Menu.php:176 #: ../../Zotlabs/Module/Oauth2.php:194 ../../Zotlabs/Module/Thing.php:268 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Wiki.php:384 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 #: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Lib/Apps.php:557 #: ../../Zotlabs/Lib/ThreadItem.php:149 msgid "Edit" msgstr "Editar" -#: ../../include/bbcode.php:221 ../../include/bbcode.php:916 -#: ../../include/bbcode.php:1494 ../../include/bbcode.php:1502 +#: ../../include/bbcode.php:233 ../../include/bbcode.php:928 +#: ../../include/bbcode.php:1525 ../../include/bbcode.php:1533 msgid "Image/photo" msgstr "Imagen/foto" -#: ../../include/bbcode.php:268 ../../include/bbcode.php:1519 +#: ../../include/bbcode.php:280 ../../include/bbcode.php:1550 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/bbcode.php:322 +#: ../../include/bbcode.php:334 #, php-format msgid "Install %1$s element %2$s" msgstr "Instalar el elemento de%1$s%2$s" -#: ../../include/bbcode.php:326 +#: ../../include/bbcode.php:338 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "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:336 ../../Zotlabs/Module/Impel.php:43 +#: ../../include/bbcode.php:348 ../../Zotlabs/Module/Impel.php:43 msgid "webpage" msgstr "página web" -#: ../../include/bbcode.php:339 ../../Zotlabs/Module/Impel.php:53 +#: ../../include/bbcode.php:351 ../../Zotlabs/Module/Impel.php:53 msgid "layout" msgstr "plantilla" -#: ../../include/bbcode.php:342 ../../Zotlabs/Module/Impel.php:48 +#: ../../include/bbcode.php:354 ../../Zotlabs/Module/Impel.php:48 msgid "block" msgstr "bloque" -#: ../../include/bbcode.php:345 ../../Zotlabs/Module/Impel.php:60 +#: ../../include/bbcode.php:357 ../../Zotlabs/Module/Impel.php:60 msgid "menu" msgstr "menú" -#: ../../include/bbcode.php:539 +#: ../../include/bbcode.php:551 msgid "card" msgstr "ficha" -#: ../../include/bbcode.php:541 +#: ../../include/bbcode.php:553 msgid "article" msgstr "el artículo" -#: ../../include/bbcode.php:547 ../../include/markdown.php:202 +#: ../../include/bbcode.php:559 ../../include/markdown.php:202 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escribió %2$s siguiente %3$s" -#: ../../include/bbcode.php:624 ../../include/bbcode.php:632 +#: ../../include/bbcode.php:636 ../../include/bbcode.php:644 msgid "Click to open/close" msgstr "Pulsar para abrir/cerrar" -#: ../../include/bbcode.php:632 ../../include/markdown.php:255 +#: ../../include/bbcode.php:644 ../../include/markdown.php:255 msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:645 +#: ../../include/bbcode.php:657 msgid "View article" msgstr "Ver el artículo" -#: ../../include/bbcode.php:645 +#: ../../include/bbcode.php:657 msgid "View summary" msgstr "Ver sumario" -#: ../../include/bbcode.php:1038 ../../include/bbcode.php:1195 -#: ../../Zotlabs/Lib/NativeWikiPage.php:605 +#: ../../include/bbcode.php:1050 ../../include/bbcode.php:1217 +#: ../../Zotlabs/Lib/NativeWikiPage.php:618 msgid "Different viewers will see this text differently" msgstr "Visitantes diferentes verán este texto de forma distinta" -#: ../../include/bbcode.php:1482 +#: ../../include/bbcode.php:1501 msgid "$1 wrote:" msgstr "$1 escribió:" @@ -6981,16 +7015,18 @@ msgstr "Nombre demasiado largo" msgid "No account identifier" msgstr "Ningún identificador de la cuenta" -#: ../../include/channel.php:212 +#: ../../include/channel.php:212 ../../Zotlabs/Module/Register.php:95 msgid "Nickname is required." msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/channel.php:226 ../../include/channel.php:707 +#: ../../include/channel.php:226 ../../include/channel.php:706 +#: ../../Zotlabs/Module/Register.php:100 #: ../../Zotlabs/Module/Changeaddr.php:46 msgid "Reserved nickname. Please choose another." msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/channel.php:231 ../../include/channel.php:712 +#: ../../include/channel.php:231 ../../include/channel.php:711 +#: ../../Zotlabs/Module/Register.php:105 #: ../../Zotlabs/Module/Changeaddr.php:51 msgid "" "Nickname has unsupported characters or is already being used on this site." @@ -7004,192 +7040,192 @@ msgstr "No ha sido posible recuperar la identidad creada" msgid "Default Profile" msgstr "Perfil principal" -#: ../../include/channel.php:640 ../../include/channel.php:729 +#: ../../include/channel.php:639 ../../include/channel.php:728 msgid "Unable to retrieve modified identity" msgstr "No se puede recuperar la identidad modficada" -#: ../../include/channel.php:1386 +#: ../../include/channel.php:1410 msgid "Requested channel is not available." msgstr "El canal solicitado no está disponible." -#: ../../include/channel.php:1532 ../../Zotlabs/Module/Profiles.php:730 +#: ../../include/channel.php:1556 ../../Zotlabs/Module/Profiles.php:730 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" -#: ../../include/channel.php:1540 +#: ../../include/channel.php:1564 msgid "Create New Profile" msgstr "Crear un nuevo perfil" -#: ../../include/channel.php:1558 ../../Zotlabs/Module/Profiles.php:822 +#: ../../include/channel.php:1582 ../../Zotlabs/Module/Profiles.php:822 msgid "Profile Image" msgstr "Imagen del perfil" -#: ../../include/channel.php:1561 +#: ../../include/channel.php:1585 msgid "Visible to everybody" msgstr "Visible para todos" -#: ../../include/channel.php:1562 ../../Zotlabs/Module/Profiles.php:727 +#: ../../include/channel.php:1586 ../../Zotlabs/Module/Profiles.php:727 #: ../../Zotlabs/Module/Profiles.php:826 msgid "Edit visibility" msgstr "Editar visibilidad" -#: ../../include/channel.php:1638 ../../include/channel.php:1766 +#: ../../include/channel.php:1662 ../../include/channel.php:1790 msgid "Gender:" msgstr "Género:" -#: ../../include/channel.php:1639 ../../include/channel.php:1810 +#: ../../include/channel.php:1663 ../../include/channel.php:1834 msgid "Status:" msgstr "Estado:" -#: ../../include/channel.php:1640 ../../include/channel.php:1834 +#: ../../include/channel.php:1664 ../../include/channel.php:1858 msgid "Homepage:" msgstr "Página personal:" -#: ../../include/channel.php:1641 +#: ../../include/channel.php:1665 msgid "Online Now" msgstr "Ahora en línea" -#: ../../include/channel.php:1694 +#: ../../include/channel.php:1718 msgid "Change your profile photo" msgstr "Cambiar su foto del perfil" -#: ../../include/channel.php:1725 +#: ../../include/channel.php:1749 msgid "Trans" msgstr "Trans" -#: ../../include/channel.php:1764 +#: ../../include/channel.php:1788 #: ../../Zotlabs/Module/Settings/Channel.php:501 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../include/channel.php:1771 +#: ../../include/channel.php:1795 msgid "Like this channel" msgstr "Me gusta este canal" -#: ../../include/channel.php:1795 +#: ../../include/channel.php:1819 msgid "j F, Y" msgstr "j F Y" -#: ../../include/channel.php:1796 +#: ../../include/channel.php:1820 msgid "j F" msgstr "j F" -#: ../../include/channel.php:1803 +#: ../../include/channel.php:1827 msgid "Birthday:" msgstr "Cumpleaños:" -#: ../../include/channel.php:1807 ../../Zotlabs/Module/Directory.php:349 +#: ../../include/channel.php:1831 ../../Zotlabs/Module/Directory.php:349 msgid "Age:" msgstr "Edad:" -#: ../../include/channel.php:1816 +#: ../../include/channel.php:1840 #, php-format msgid "for %1$d %2$s" msgstr "por %1$d %2$s" -#: ../../include/channel.php:1828 +#: ../../include/channel.php:1852 msgid "Tags:" msgstr "Etiquetas:" -#: ../../include/channel.php:1832 +#: ../../include/channel.php:1856 msgid "Sexual Preference:" msgstr "Orientación sexual:" -#: ../../include/channel.php:1836 ../../Zotlabs/Module/Directory.php:367 +#: ../../include/channel.php:1860 ../../Zotlabs/Module/Directory.php:367 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../include/channel.php:1838 +#: ../../include/channel.php:1862 msgid "Political Views:" msgstr "Posición política:" -#: ../../include/channel.php:1840 +#: ../../include/channel.php:1864 msgid "Religion:" msgstr "Religión:" -#: ../../include/channel.php:1842 ../../Zotlabs/Module/Directory.php:369 +#: ../../include/channel.php:1866 ../../Zotlabs/Module/Directory.php:369 msgid "About:" msgstr "Sobre mí:" -#: ../../include/channel.php:1844 +#: ../../include/channel.php:1868 msgid "Hobbies/Interests:" msgstr "Aficciones o intereses:" -#: ../../include/channel.php:1846 +#: ../../include/channel.php:1870 msgid "Likes:" msgstr "Me gusta:" -#: ../../include/channel.php:1848 +#: ../../include/channel.php:1872 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../include/channel.php:1850 +#: ../../include/channel.php:1874 msgid "Contact information and Social Networks:" msgstr "Información de contacto y redes sociales:" -#: ../../include/channel.php:1852 +#: ../../include/channel.php:1876 msgid "My other channels:" msgstr "Mis otros canales:" -#: ../../include/channel.php:1854 +#: ../../include/channel.php:1878 msgid "Musical interests:" msgstr "Preferencias musicales:" -#: ../../include/channel.php:1856 +#: ../../include/channel.php:1880 msgid "Books, literature:" msgstr "Libros, literatura:" -#: ../../include/channel.php:1858 +#: ../../include/channel.php:1882 msgid "Television:" msgstr "Televisión:" -#: ../../include/channel.php:1860 +#: ../../include/channel.php:1884 msgid "Film/dance/culture/entertainment:" msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/channel.php:1862 +#: ../../include/channel.php:1886 msgid "Love/Romance:" msgstr "Vida sentimental o amorosa:" -#: ../../include/channel.php:1864 +#: ../../include/channel.php:1888 msgid "Work/employment:" msgstr "Trabajo:" -#: ../../include/channel.php:1866 +#: ../../include/channel.php:1890 msgid "School/education:" msgstr "Estudios:" -#: ../../include/channel.php:1887 ../../Zotlabs/Module/Profperm.php:113 +#: ../../include/channel.php:1911 ../../Zotlabs/Module/Profperm.php:113 #: ../../Zotlabs/Lib/Apps.php:362 msgid "Profile" msgstr "Perfil" -#: ../../include/channel.php:1889 +#: ../../include/channel.php:1913 msgid "Like this thing" msgstr "Me gusta esto" -#: ../../include/channel.php:1890 ../../Zotlabs/Module/Events.php:699 +#: ../../include/channel.php:1914 ../../Zotlabs/Module/Events.php:699 msgid "Export" msgstr "Exportar" -#: ../../include/channel.php:2329 ../../Zotlabs/Module/Cover_photo.php:304 +#: ../../include/channel.php:2353 ../../Zotlabs/Module/Cover_photo.php:304 msgid "cover photo" msgstr "Imagen de portada del perfil" -#: ../../include/channel.php:2598 ../../Zotlabs/Module/Rmagic.php:96 -#: ../../boot.php:1712 +#: ../../include/channel.php:2622 ../../Zotlabs/Module/Rmagic.php:96 +#: ../../boot.php:1717 msgid "Remote Authentication" msgstr "Acceso desde su servidor" -#: ../../include/channel.php:2599 ../../Zotlabs/Module/Rmagic.php:97 +#: ../../include/channel.php:2623 ../../Zotlabs/Module/Rmagic.php:97 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../include/channel.php:2600 ../../Zotlabs/Module/Rmagic.php:98 +#: ../../include/channel.php:2624 ../../Zotlabs/Module/Rmagic.php:98 msgid "Authenticate" msgstr "Acceder" -#: ../../include/channel.php:2758 ../../Zotlabs/Module/Admin/Accounts.php:91 +#: ../../include/channel.php:2782 ../../Zotlabs/Module/Admin/Accounts.php:184 #, php-format msgid "Account '%s' deleted" msgstr "La cuenta '%s' ha sido eliminada" @@ -7199,49 +7235,49 @@ msgstr "La cuenta '%s' ha sido eliminada" msgid "Visible to your default audience" msgstr "Visible para su público predeterminado." -#: ../../include/acl_selectors.php:99 +#: ../../include/acl_selectors.php:100 msgid "Profile-Based Privacy Groups" msgstr "Grupos de privacidad basados en perfiles" -#: ../../include/acl_selectors.php:118 +#: ../../include/acl_selectors.php:119 msgid "Private Forum" msgstr "Foro privado" -#: ../../include/acl_selectors.php:124 ../../Zotlabs/Widget/Forums.php:100 -#: ../../Zotlabs/Widget/Activity_filter.php:115 +#: ../../include/acl_selectors.php:125 ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:123 #: ../../Zotlabs/Widget/Notifications.php:139 #: ../../Zotlabs/Widget/Notifications.php:140 msgid "Forums" msgstr "Foros" -#: ../../include/acl_selectors.php:135 +#: ../../include/acl_selectors.php:136 #: ../../Zotlabs/Lib/PermissionDescription.php:107 msgid "Only me" msgstr "Sólo yo" -#: ../../include/acl_selectors.php:142 +#: ../../include/acl_selectors.php:143 msgid "Share with" msgstr "Compartir con " -#: ../../include/acl_selectors.php:143 +#: ../../include/acl_selectors.php:144 msgid "Custom selection" msgstr "Selección personalizada" -#: ../../include/acl_selectors.php:145 +#: ../../include/acl_selectors.php:146 msgid "" "Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " "limit the scope of \"Allow\"." msgstr "Seleccione \"Permitir\" para permitir la visualización. \"No permitir\" le permite anular y limitar el alcance de \"Permitir\"." -#: ../../include/acl_selectors.php:146 ../../Zotlabs/Module/Authorize.php:32 +#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32 msgid "Allow" msgstr "Permitir" -#: ../../include/acl_selectors.php:147 +#: ../../include/acl_selectors.php:148 msgid "Don't allow" msgstr "No permitir" -#: ../../include/acl_selectors.php:180 +#: ../../include/acl_selectors.php:181 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
These" @@ -7440,28 +7476,28 @@ msgstr "Compartir esto" msgid "share" msgstr "compartir" -#: ../../Zotlabs/Widget/Pinned.php:123 ../../Zotlabs/Widget/Pinned.php:124 +#: ../../Zotlabs/Widget/Pinned.php:122 ../../Zotlabs/Widget/Pinned.php:123 #, php-format msgid "View %s's profile - %s" msgstr "Ver el perfil de %s - %s" -#: ../../Zotlabs/Widget/Pinned.php:128 ../../Zotlabs/Lib/ThreadItem.php:414 +#: ../../Zotlabs/Widget/Pinned.php:127 ../../Zotlabs/Lib/ThreadItem.php:414 msgid "via" msgstr "mediante" -#: ../../Zotlabs/Widget/Pinned.php:143 ../../Zotlabs/Lib/ThreadItem.php:445 +#: ../../Zotlabs/Widget/Pinned.php:141 ../../Zotlabs/Lib/ThreadItem.php:445 msgid "Attendance Options" msgstr "Opciones de participación o asistencia" -#: ../../Zotlabs/Widget/Pinned.php:144 ../../Zotlabs/Lib/ThreadItem.php:447 +#: ../../Zotlabs/Widget/Pinned.php:142 ../../Zotlabs/Lib/ThreadItem.php:447 msgid "Voting Options" msgstr "Opciones de votación" -#: ../../Zotlabs/Widget/Pinned.php:156 ../../Zotlabs/Lib/ThreadItem.php:471 +#: ../../Zotlabs/Widget/Pinned.php:154 ../../Zotlabs/Lib/ThreadItem.php:471 msgid "Pinned post" msgstr "Entradas ancladas" -#: ../../Zotlabs/Widget/Pinned.php:158 +#: ../../Zotlabs/Widget/Pinned.php:156 msgid "Don't show" msgstr "No mostrar" @@ -7487,7 +7523,7 @@ msgid "Channel Calendar" msgstr "Calendario del canal" #: ../../Zotlabs/Widget/Cdav.php:129 ../../Zotlabs/Widget/Cdav.php:143 -#: ../../Zotlabs/Module/Cdav.php:1055 +#: ../../Zotlabs/Module/Cdav.php:1056 msgid "CalDAV Calendars" msgstr "Calendarios CalDAV" @@ -7508,7 +7544,7 @@ msgid "Create new CalDAV calendar" msgstr "Crear un nuevo calendario CalDAV" #: ../../Zotlabs/Widget/Cdav.php:140 ../../Zotlabs/Widget/Cdav.php:178 -#: ../../Zotlabs/Module/Cdav.php:1059 ../../Zotlabs/Module/Cdav.php:1387 +#: ../../Zotlabs/Module/Cdav.php:1060 ../../Zotlabs/Module/Cdav.php:1388 #: ../../Zotlabs/Module/Webpages.php:254 #: ../../Zotlabs/Module/New_channel.php:189 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Profiles.php:800 @@ -7526,7 +7562,7 @@ msgstr "Nombre del calendario" msgid "Calendar Tools" msgstr "Gestión de calendarios" -#: ../../Zotlabs/Widget/Cdav.php:143 ../../Zotlabs/Module/Cdav.php:1055 +#: ../../Zotlabs/Widget/Cdav.php:143 ../../Zotlabs/Module/Cdav.php:1056 msgid "Channel Calendars" msgstr "Calendarios del canal" @@ -7611,23 +7647,23 @@ msgid "Bookmarked Chatrooms" msgstr "Salas de chat preferidas" #: ../../Zotlabs/Widget/Wiki_page_history.php:23 -#: ../../Zotlabs/Lib/NativeWikiPage.php:564 +#: ../../Zotlabs/Lib/NativeWikiPage.php:577 msgctxt "wiki_history" msgid "Message" msgstr "Mensaje" #: ../../Zotlabs/Widget/Wiki_page_history.php:24 -#: ../../Zotlabs/Lib/NativeWikiPage.php:565 +#: ../../Zotlabs/Lib/NativeWikiPage.php:578 msgid "Date" msgstr "Fecha" #: ../../Zotlabs/Widget/Wiki_page_history.php:25 -#: ../../Zotlabs/Module/Wiki.php:367 ../../Zotlabs/Lib/NativeWikiPage.php:566 +#: ../../Zotlabs/Module/Wiki.php:366 ../../Zotlabs/Lib/NativeWikiPage.php:579 msgid "Revert" msgstr "Revertir" #: ../../Zotlabs/Widget/Wiki_page_history.php:26 -#: ../../Zotlabs/Lib/NativeWikiPage.php:567 +#: ../../Zotlabs/Lib/NativeWikiPage.php:580 msgid "Compare" msgstr "Comparar" @@ -7663,13 +7699,13 @@ msgstr "Nuevo mensaje" msgid "photo/image" msgstr "foto/imagen" -#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:411 msgid "Site" msgstr "Sitio" #: ../../Zotlabs/Widget/Admin.php:23 -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin/Accounts.php:308 +#: ../../Zotlabs/Module/Admin/Accounts.php:327 #: ../../Zotlabs/Module/Admin.php:96 msgid "Accounts" msgstr "Cuentas" @@ -7680,7 +7716,7 @@ msgstr "Inscripciones de nuevos miembros pendientes de aprobación" #: ../../Zotlabs/Widget/Admin.php:24 #: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:114 +#: ../../Zotlabs/Module/Admin.php:117 msgid "Channels" msgstr "Canales" @@ -7724,85 +7760,85 @@ msgstr "Informes" msgid "Addon Features" msgstr "Características del addon" -#: ../../Zotlabs/Widget/Activity_filter.php:33 +#: ../../Zotlabs/Widget/Activity_filter.php:37 msgid "Direct Messages" msgstr "Mensajes directos" -#: ../../Zotlabs/Widget/Activity_filter.php:37 +#: ../../Zotlabs/Widget/Activity_filter.php:41 msgid "Show direct (private) messages" msgstr "Mostrar mensajes (privados) directos" -#: ../../Zotlabs/Widget/Activity_filter.php:42 +#: ../../Zotlabs/Widget/Activity_filter.php:46 msgid "Events" msgstr "Eventos" -#: ../../Zotlabs/Widget/Activity_filter.php:46 +#: ../../Zotlabs/Widget/Activity_filter.php:50 msgid "Show posts that include events" msgstr "Mostrar entradas que incluyan eventos" -#: ../../Zotlabs/Widget/Activity_filter.php:52 +#: ../../Zotlabs/Widget/Activity_filter.php:56 msgid "Polls" msgstr "Encuestas" -#: ../../Zotlabs/Widget/Activity_filter.php:56 +#: ../../Zotlabs/Widget/Activity_filter.php:60 msgid "Show posts that include polls" msgstr "Mostrar entradas que incluyan encuestas" -#: ../../Zotlabs/Widget/Activity_filter.php:77 +#: ../../Zotlabs/Widget/Activity_filter.php:83 #, php-format msgid "Show posts related to the %s privacy group" msgstr "Mostrar entradas relacionadas con el grupo %s" -#: ../../Zotlabs/Widget/Activity_filter.php:86 +#: ../../Zotlabs/Widget/Activity_filter.php:92 msgid "Show my privacy groups" msgstr "Mostrar mis grupos de canales" -#: ../../Zotlabs/Widget/Activity_filter.php:108 +#: ../../Zotlabs/Widget/Activity_filter.php:116 msgid "Show posts to this forum" msgstr "Mostrar las entradas en este foro" -#: ../../Zotlabs/Widget/Activity_filter.php:119 +#: ../../Zotlabs/Widget/Activity_filter.php:127 msgid "Show forums" msgstr "Mostrar los foros" -#: ../../Zotlabs/Widget/Activity_filter.php:133 +#: ../../Zotlabs/Widget/Activity_filter.php:141 msgid "Starred Posts" msgstr "Entradas preferidas" -#: ../../Zotlabs/Widget/Activity_filter.php:137 +#: ../../Zotlabs/Widget/Activity_filter.php:145 msgid "Show posts that I have starred" msgstr "Mostrar entradas que he señalado como preferidas" -#: ../../Zotlabs/Widget/Activity_filter.php:148 +#: ../../Zotlabs/Widget/Activity_filter.php:156 msgid "Personal Posts" msgstr "Entradas personales" -#: ../../Zotlabs/Widget/Activity_filter.php:152 +#: ../../Zotlabs/Widget/Activity_filter.php:160 msgid "Show posts that mention or involve me" msgstr "Mostrar entradas que me mencionen o involucren" -#: ../../Zotlabs/Widget/Activity_filter.php:173 +#: ../../Zotlabs/Widget/Activity_filter.php:183 #, php-format msgid "Show posts that I have filed to %s" msgstr "Mostrar las entradas que he enviado a %s" -#: ../../Zotlabs/Widget/Activity_filter.php:183 +#: ../../Zotlabs/Widget/Activity_filter.php:193 msgid "Show filed post categories" msgstr "Mostrar los temas de las entradas archivadas" -#: ../../Zotlabs/Widget/Activity_filter.php:197 +#: ../../Zotlabs/Widget/Activity_filter.php:207 msgid "Panel search" msgstr "Panel de búsqueda" -#: ../../Zotlabs/Widget/Activity_filter.php:207 +#: ../../Zotlabs/Widget/Activity_filter.php:217 msgid "Filter by name" msgstr "Filtrar por nombre" -#: ../../Zotlabs/Widget/Activity_filter.php:222 +#: ../../Zotlabs/Widget/Activity_filter.php:232 msgid "Remove active filter" msgstr "Eliminar el filtro activo" -#: ../../Zotlabs/Widget/Activity_filter.php:238 +#: ../../Zotlabs/Widget/Activity_filter.php:248 msgid "Stream Filters" msgstr "Filtros del stream" @@ -8219,29 +8255,29 @@ msgstr "No se puede copiar la carpeta en sí misma." msgid "Can not move folder \"%s\" into itself." msgstr "No se puede mover la carpeta\"%s\" en sí misma." -#: ../../Zotlabs/Module/Network.php:105 +#: ../../Zotlabs/Module/Network.php:107 msgid "No such group" msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Network.php:152 +#: ../../Zotlabs/Module/Network.php:156 msgid "No such channel" msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Network.php:164 ../../Zotlabs/Module/Channel.php:221 +#: ../../Zotlabs/Module/Network.php:168 ../../Zotlabs/Module/Channel.php:221 msgid "Search Results For:" msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Network.php:205 ../../Zotlabs/Module/Channel.php:256 +#: ../../Zotlabs/Module/Network.php:209 ../../Zotlabs/Module/Channel.php:256 #: ../../Zotlabs/Module/Hq.php:125 ../../Zotlabs/Module/Pubstream.php:95 #: ../../Zotlabs/Module/Display.php:76 msgid "Reset form" msgstr "Reiniciar el formulario" -#: ../../Zotlabs/Module/Network.php:239 +#: ../../Zotlabs/Module/Network.php:243 msgid "Privacy group is empty" msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Network.php:249 +#: ../../Zotlabs/Module/Network.php:253 msgid "Privacy group: " msgstr "Grupo de canales: " @@ -8278,7 +8314,7 @@ msgid "" msgstr "Utilice este formulario para importar entradas y contenido desde un archivo de exportación." #: ../../Zotlabs/Module/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:629 +#: ../../Zotlabs/Module/Import.php:630 msgid "File to Upload" msgstr "Fichero para subir" @@ -8291,42 +8327,42 @@ 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:622 +#: ../../Zotlabs/Module/Import.php:623 msgid "You must be logged in to use this feature." msgstr "Debe estar registrado para poder usar esta funcionalidad." -#: ../../Zotlabs/Module/Import.php:627 +#: ../../Zotlabs/Module/Import.php:628 msgid "Import Channel" msgstr "Importar canal" -#: ../../Zotlabs/Module/Import.php:628 +#: ../../Zotlabs/Module/Import.php:629 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:630 +#: ../../Zotlabs/Module/Import.php:631 msgid "Or provide the old server/hub details" msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Import.php:632 +#: ../../Zotlabs/Module/Import.php:633 msgid "Your old identity address (xyz@example.com)" msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Import.php:633 +#: ../../Zotlabs/Module/Import.php:634 msgid "Your old login email address" msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Import.php:634 +#: ../../Zotlabs/Module/Import.php:635 msgid "Your old login password" msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Import.php:635 +#: ../../Zotlabs/Module/Import.php:636 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:637 +#: ../../Zotlabs/Module/Import.php:638 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" @@ -8334,26 +8370,26 @@ 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:639 +#: ../../Zotlabs/Module/Import.php:640 msgid "Make this hub my primary location" msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Import.php:641 msgid "Move this channel (disable all previous locations)" msgstr "Mover este canal (desactivar todas las ubicaciones anteriores)" -#: ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Import.php:642 msgid "Use this channel nickname instead of the one provided" msgstr "Usa este alias de canal en lugar del que se proporciona" -#: ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Import.php:642 msgid "" "Leave blank to keep your existing channel nickname. You will be randomly " "assigned a similar nickname if either name is already allocated on this " "site." msgstr "Dejar en blanco para mantener su alias de canal . Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio." -#: ../../Zotlabs/Module/Import.php:643 +#: ../../Zotlabs/Module/Import.php:644 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." @@ -8380,146 +8416,150 @@ msgstr "php util/z6convert.php" msgid "from the terminal." msgstr "desde la terminal." -#: ../../Zotlabs/Module/Register.php:52 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." +#: ../../Zotlabs/Module/Register.php:112 +msgid "Email address required" +msgstr "Dirección de correo electrónico requerida" -#: ../../Zotlabs/Module/Register.php:58 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." +#: ../../Zotlabs/Module/Register.php:153 +msgid "No password provided" +msgstr "No se ha proporcionado la contraseña" -#: ../../Zotlabs/Module/Register.php:92 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." +#: ../../Zotlabs/Module/Register.php:176 +msgid "Terms of Service not accepted" +msgstr "No se han aceptado los Términos del servicio" -#: ../../Zotlabs/Module/Register.php:135 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registro exitoso. Continúe creando tu primer canal..." +#: ../../Zotlabs/Module/Register.php:238 +msgid "Invitation code succesfully applied" +msgstr "El código de invitación se ha aplicado con éxito" -#: ../../Zotlabs/Module/Register.php:138 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." +#: ../../Zotlabs/Module/Register.php:258 +msgid "Invitation not in time or too late" +msgstr "La invitación no llega a tiempo o llega demasiado tarde" -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." +#: ../../Zotlabs/Module/Register.php:264 +msgid "Invitation email failed" +msgstr "Error en el correo electrónico de invitación" + +#: ../../Zotlabs/Module/Register.php:272 +msgid "Invitation code failed" +msgstr "Código de invitación fallido" + +#: ../../Zotlabs/Module/Register.php:279 +msgid "Invitations are not available" +msgstr "No hay invitaciones disponibles" + +#: ../../Zotlabs/Module/Register.php:305 +msgid "Email address already in use" +msgstr "La dirección de correo electrónico ya está en uso" -#: ../../Zotlabs/Module/Register.php:148 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." +#: ../../Zotlabs/Module/Register.php:315 +msgid "Registration on this hub is by invitation only" +msgstr "El registro en este hub solo es posible por invitación" -#: ../../Zotlabs/Module/Register.php:195 +#: ../../Zotlabs/Module/Register.php:423 +msgid "New register request" +msgstr "Nueva solicitud de registro" + +#: ../../Zotlabs/Module/Register.php:441 +msgid "Error creating dId A" +msgstr "Error al crear dId A" + +#: ../../Zotlabs/Module/Register.php:459 msgid "Registration on this hub is disabled." msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Register.php:468 msgid "Registration on this hub is by approval only." msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../Zotlabs/Module/Register.php:205 ../../Zotlabs/Module/Register.php:214 -msgid "
Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." +#: ../../Zotlabs/Module/Register.php:469 +msgid "Register at another affiliated hub in case when prefered" +msgstr "Regístrese en otro hub afiliado en caso de que lo prefiera" -#: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/Register.php:482 msgid "Registration on this hub is by invitation only." msgstr "La inscripción en este hub es sólo posible por invitación." -#: ../../Zotlabs/Module/Register.php:224 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." +#: ../../Zotlabs/Module/Register.php:483 +msgid "Register at another affiliated hub" +msgstr "Regístrese en otro hub afiliado" -#: ../../Zotlabs/Module/Register.php:239 ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Register.php:497 ../../Zotlabs/Module/Siteinfo.php:28 msgid "Terms of Service" msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:503 #, php-format msgid "I accept the %s for this website" msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/Register.php:510 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" -#: ../../Zotlabs/Module/Register.php:257 +#: ../../Zotlabs/Module/Register.php:520 msgid "Your email address" msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Register.php:258 +#: ../../Zotlabs/Module/Register.php:522 ../../Zotlabs/Module/Oauth.php:117 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +msgid "Optional" +msgstr "Opcional" + +#: ../../Zotlabs/Module/Register.php:527 msgid "Choose a password" msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Register.php:259 +#: ../../Zotlabs/Module/Register.php:528 msgid "Please re-enter your password" msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Register.php:260 +#: ../../Zotlabs/Module/Register.php:530 msgid "Please enter your invitation code" msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Register.php:261 -msgid "Your Name" +#: ../../Zotlabs/Module/Register.php:532 +msgid "Your name" msgstr "Su nombre" -#: ../../Zotlabs/Module/Register.php:261 -msgid "Real names are preferred." -msgstr "Se prefieren los nombres reales" +#: ../../Zotlabs/Module/Register.php:532 +msgid "Real name is preferred" +msgstr "Se prefiere el nombre real" -#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/Register.php:534 #: ../../Zotlabs/Module/New_channel.php:177 msgid "Choose a short nickname" msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/Register.php:263 -#, php-format +#: ../../Zotlabs/Module/Register.php:534 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" +"Your nickname will be used to create an easy to remember channel address" +msgstr "Tu alias se utilizará para crear una dirección de canal fácil de recordar" -#: ../../Zotlabs/Module/Register.php:264 -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Register.php:538 +msgid "Why do you want to join this hub?" +msgstr "¿Por qué quiere unirse a este hub?" -#: ../../Zotlabs/Module/Register.php:264 -msgid "" -"Select a channel permission role for your usage needs and privacy " -"requirements." -msgstr "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad." +#: ../../Zotlabs/Module/Register.php:538 +msgid "This will help to review your registration" +msgstr "Esto ayudará a revisar su registro" -#: ../../Zotlabs/Module/Register.php:264 -#: ../../Zotlabs/Module/New_channel.php:178 -msgid "Read more about channel permission roles" -msgstr "Leer más sobre los roles y permisos" - -#: ../../Zotlabs/Module/Register.php:265 -msgid "no" -msgstr "no" - -#: ../../Zotlabs/Module/Register.php:265 -msgid "yes" -msgstr "sí" - -#: ../../Zotlabs/Module/Register.php:277 -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Register.php:544 +#: ../../Zotlabs/Module/Admin/Site.php:413 msgid "Registration" msgstr "Registro" -#: ../../Zotlabs/Module/Register.php:294 +#: ../../Zotlabs/Module/Register.php:552 +msgid "I have an invite code" +msgstr "Tengo un código de invitación" + +#: ../../Zotlabs/Module/Register.php:599 msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones." +"This site has exceeded the number of allowed daily account registrations." +msgstr "Este sitio ha superado el número permitido de registros diarios de cuentas." -#: ../../Zotlabs/Module/Search.php:22 +#: ../../Zotlabs/Module/Search.php:21 #: ../../Zotlabs/Module/Viewconnections.php:23 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Display.php:26 #: ../../Zotlabs/Module/Directory.php:73 ../../Zotlabs/Module/Directory.php:78 @@ -8527,425 +8567,425 @@ msgstr "Este sitio requiere verificación por correo electrónico. Después de c msgid "Public access denied." msgstr "Acceso público denegado." -#: ../../Zotlabs/Module/Search.php:251 +#: ../../Zotlabs/Module/Search.php:250 #, php-format msgid "Items tagged with: %s" msgstr "elementos etiquetados con: %s" -#: ../../Zotlabs/Module/Search.php:253 +#: ../../Zotlabs/Module/Search.php:252 #, php-format msgid "Search results for: %s" msgstr "Resultados de la búsqueda para: %s" -#: ../../Zotlabs/Module/Setup.php:167 +#: ../../Zotlabs/Module/Setup.php:169 msgid "$Projectname Server - Setup" msgstr "Servidor $Projectname - Instalación" -#: ../../Zotlabs/Module/Setup.php:171 +#: ../../Zotlabs/Module/Setup.php:173 msgid "Could not connect to database." msgstr "No se ha podido conectar a la base de datos." -#: ../../Zotlabs/Module/Setup.php:175 +#: ../../Zotlabs/Module/Setup.php:177 msgid "" "Could not connect to specified site URL. Possible SSL certificate or DNS " "issue." msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." -#: ../../Zotlabs/Module/Setup.php:182 +#: ../../Zotlabs/Module/Setup.php:184 msgid "Could not create table." msgstr "No se puede crear la tabla." -#: ../../Zotlabs/Module/Setup.php:188 +#: ../../Zotlabs/Module/Setup.php:190 msgid "Your site database has been installed." msgstr "La base de datos del sitio ha sido instalada." -#: ../../Zotlabs/Module/Setup.php:194 +#: ../../Zotlabs/Module/Setup.php:196 msgid "" "You may need to import the file \"install/schema_xxx.sql\" manually using a " "database client." msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." -#: ../../Zotlabs/Module/Setup.php:195 ../../Zotlabs/Module/Setup.php:259 -#: ../../Zotlabs/Module/Setup.php:766 +#: ../../Zotlabs/Module/Setup.php:197 ../../Zotlabs/Module/Setup.php:261 +#: ../../Zotlabs/Module/Setup.php:768 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Setup.php:256 +#: ../../Zotlabs/Module/Setup.php:258 msgid "System check" msgstr "Verificación del sistema" -#: ../../Zotlabs/Module/Setup.php:260 ../../Zotlabs/Module/Cdav.php:1036 +#: ../../Zotlabs/Module/Setup.php:262 ../../Zotlabs/Module/Cdav.php:1037 #: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Events.php:707 #: ../../Zotlabs/Module/Cal.php:204 ../../Zotlabs/Module/Photos.php:956 msgid "Next" msgstr "Siguiente" -#: ../../Zotlabs/Module/Setup.php:261 +#: ../../Zotlabs/Module/Setup.php:263 msgid "Check again" msgstr "Verificar de nuevo" -#: ../../Zotlabs/Module/Setup.php:282 +#: ../../Zotlabs/Module/Setup.php:284 msgid "Database connection" msgstr "Conexión a la base de datos" -#: ../../Zotlabs/Module/Setup.php:283 +#: ../../Zotlabs/Module/Setup.php:285 msgid "" "In order to install $Projectname we need to know how to connect to your " "database." msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." -#: ../../Zotlabs/Module/Setup.php:284 +#: ../../Zotlabs/Module/Setup.php:286 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." -#: ../../Zotlabs/Module/Setup.php:285 +#: ../../Zotlabs/Module/Setup.php:287 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." -#: ../../Zotlabs/Module/Setup.php:289 +#: ../../Zotlabs/Module/Setup.php:291 msgid "Database Server Name" msgstr "Nombre del servidor de base de datos" -#: ../../Zotlabs/Module/Setup.php:289 +#: ../../Zotlabs/Module/Setup.php:291 msgid "Default is 127.0.0.1" msgstr "De forma predeterminada es 127.0.0.1" -#: ../../Zotlabs/Module/Setup.php:290 +#: ../../Zotlabs/Module/Setup.php:292 msgid "Database Port" msgstr "Puerto de la base de datos" -#: ../../Zotlabs/Module/Setup.php:290 +#: ../../Zotlabs/Module/Setup.php:292 msgid "Communication port number - use 0 for default" msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" -#: ../../Zotlabs/Module/Setup.php:291 +#: ../../Zotlabs/Module/Setup.php:293 msgid "Database Login Name" msgstr "Usuario de la base de datos" -#: ../../Zotlabs/Module/Setup.php:292 +#: ../../Zotlabs/Module/Setup.php:294 msgid "Database Login Password" msgstr "Contraseña de acceso a la base de datos" -#: ../../Zotlabs/Module/Setup.php:293 +#: ../../Zotlabs/Module/Setup.php:295 msgid "Database Name" msgstr "Nombre de la base de datos" -#: ../../Zotlabs/Module/Setup.php:294 +#: ../../Zotlabs/Module/Setup.php:296 msgid "Database Type" msgstr "Tipo de base de datos" -#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "Site administrator email address" msgstr "Dirección de correo electrónico del administrador del sitio" -#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." -#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Website URL" msgstr "Dirección del sitio web" -#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Please use SSL (https) URL if available." msgstr "Por favor, use SSL (https) si está disponible." -#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:340 +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:342 msgid "Please select a default timezone for your website" msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" -#: ../../Zotlabs/Module/Setup.php:325 +#: ../../Zotlabs/Module/Setup.php:327 msgid "Site settings" msgstr "Ajustes del sitio" -#: ../../Zotlabs/Module/Setup.php:379 +#: ../../Zotlabs/Module/Setup.php:381 msgid "PHP version 7.1 or greater is required." msgstr "Se requiere la versión 7.1 o superior de PHP." -#: ../../Zotlabs/Module/Setup.php:380 +#: ../../Zotlabs/Module/Setup.php:382 msgid "PHP version" msgstr "Versión de PHP" -#: ../../Zotlabs/Module/Setup.php:396 +#: ../../Zotlabs/Module/Setup.php:398 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." -#: ../../Zotlabs/Module/Setup.php:397 +#: ../../Zotlabs/Module/Setup.php:399 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron." msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." -#: ../../Zotlabs/Module/Setup.php:401 +#: ../../Zotlabs/Module/Setup.php:403 msgid "PHP executable path" msgstr "Ruta del ejecutable PHP" -#: ../../Zotlabs/Module/Setup.php:401 +#: ../../Zotlabs/Module/Setup.php:403 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." -#: ../../Zotlabs/Module/Setup.php:406 +#: ../../Zotlabs/Module/Setup.php:408 msgid "Command line PHP" msgstr "PHP en línea de comandos" -#: ../../Zotlabs/Module/Setup.php:416 +#: ../../Zotlabs/Module/Setup.php:418 msgid "" "Unable to check command line PHP, as shell_exec() is disabled. This is " "required." msgstr "No se puede comprobar la línea de comandos PHP, ya que shell_exec() está deshabilitado. Es necesario que esté activado." -#: ../../Zotlabs/Module/Setup.php:420 +#: ../../Zotlabs/Module/Setup.php:422 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." -#: ../../Zotlabs/Module/Setup.php:421 +#: ../../Zotlabs/Module/Setup.php:423 msgid "This is required for message delivery to work." msgstr "Esto es necesario para que funcione la transmisión de mensajes." -#: ../../Zotlabs/Module/Setup.php:424 +#: ../../Zotlabs/Module/Setup.php:426 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Setup.php:444 +#: ../../Zotlabs/Module/Setup.php:446 msgid "" "This is not sufficient to upload larger images or files. You should be able " "to upload at least 4 MB at once." msgstr "Esto no es suficiente para subir imágenes o archivos más grandes. Usted debe ser capaz de subir al menos 4 MB a la vez." -#: ../../Zotlabs/Module/Setup.php:446 +#: ../../Zotlabs/Module/Setup.php:448 #, php-format msgid "" "Your max allowed total upload size is set to %s. Maximum size of one file to" " upload is set to %s. You are allowed to upload up to %d files at once." msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." -#: ../../Zotlabs/Module/Setup.php:452 +#: ../../Zotlabs/Module/Setup.php:454 msgid "You can adjust these settings in the server php.ini file." msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." -#: ../../Zotlabs/Module/Setup.php:454 +#: ../../Zotlabs/Module/Setup.php:456 msgid "PHP upload limits" msgstr "Límites PHP de subida" -#: ../../Zotlabs/Module/Setup.php:477 +#: ../../Zotlabs/Module/Setup.php:479 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." -#: ../../Zotlabs/Module/Setup.php:478 +#: ../../Zotlabs/Module/Setup.php:480 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Setup.php:481 +#: ../../Zotlabs/Module/Setup.php:483 msgid "Generate encryption keys" msgstr "Generar claves de cifrado" -#: ../../Zotlabs/Module/Setup.php:498 +#: ../../Zotlabs/Module/Setup.php:500 msgid "libCurl PHP module" msgstr "módulo libCurl PHP" -#: ../../Zotlabs/Module/Setup.php:499 +#: ../../Zotlabs/Module/Setup.php:501 msgid "GD graphics PHP module" msgstr "módulo PHP GD graphics" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:502 msgid "OpenSSL PHP module" msgstr "módulo PHP OpenSSL" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:503 msgid "PDO database PHP module" msgstr "Módulo PHP de la base de datos PDO " -#: ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:504 msgid "mb_string PHP module" msgstr "módulo PHP mb_string" -#: ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:505 msgid "xml PHP module" msgstr "módulo PHP xml" -#: ../../Zotlabs/Module/Setup.php:504 +#: ../../Zotlabs/Module/Setup.php:506 msgid "zip PHP module" msgstr "Módulo zip PHP" -#: ../../Zotlabs/Module/Setup.php:508 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:510 ../../Zotlabs/Module/Setup.php:512 msgid "Apache mod_rewrite module" msgstr "módulo Apache mod_rewrite " -#: ../../Zotlabs/Module/Setup.php:508 +#: ../../Zotlabs/Module/Setup.php:510 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:517 +#: ../../Zotlabs/Module/Setup.php:516 ../../Zotlabs/Module/Setup.php:519 msgid "exec" msgstr "ejecutable" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:516 msgid "" "Error: exec is required but is either not installed or has been disabled in " "php.ini" msgstr "Error: se necesita un ejecutable pero o no se instaló o está deshabilitado en php.ini" -#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 ../../Zotlabs/Module/Setup.php:525 msgid "shell_exec" msgstr "shell_exec" -#: ../../Zotlabs/Module/Setup.php:520 +#: ../../Zotlabs/Module/Setup.php:522 msgid "" "Error: shell_exec is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: se necesita shell_exec pero o no se instaló o está deshabilitado en php.ini" -#: ../../Zotlabs/Module/Setup.php:528 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:532 +#: ../../Zotlabs/Module/Setup.php:534 msgid "" "Error: GD PHP module with JPEG support or ImageMagick graphics library " "required but not installed." msgstr "Error: Se requiere el módulo GD PHP con soporte para JPEG o la biblioteca de gráficos ImageMagick, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:536 +#: ../../Zotlabs/Module/Setup.php:538 msgid "Error: openssl PHP module required but not installed." msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:542 +#: ../../Zotlabs/Module/Setup.php:544 msgid "" "Error: PDO database PHP module missing a driver for either mysql or pgsql." msgstr "Error: El módulo PHP de la base de datos PDO carece de un controlador para mysql o pgsql." -#: ../../Zotlabs/Module/Setup.php:547 +#: ../../Zotlabs/Module/Setup.php:549 msgid "Error: PDO database PHP module required but not installed." msgstr "Error: se necesita el módulo PHP de la base de datos PDO, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:551 +#: ../../Zotlabs/Module/Setup.php:553 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:557 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:561 msgid "Error: zip PHP module required but not installed." msgstr "Error: se requiere el módulo zip PHP pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:578 ../../Zotlabs/Module/Setup.php:587 +#: ../../Zotlabs/Module/Setup.php:580 ../../Zotlabs/Module/Setup.php:589 msgid ".htconfig.php is writable" msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:585 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Setup.php:584 +#: ../../Zotlabs/Module/Setup.php:586 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../Zotlabs/Module/Setup.php:585 +#: ../../Zotlabs/Module/Setup.php:587 msgid "Please see install/INSTALL.txt for additional information." msgstr "Por favor, consulte install/INSTALL.txt para más información." -#: ../../Zotlabs/Module/Setup.php:601 +#: ../../Zotlabs/Module/Setup.php:603 msgid "" "This software uses the Smarty3 template engine to render its web views. " "Smarty3 compiles templates to PHP to speed up rendering." msgstr "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización." -#: ../../Zotlabs/Module/Setup.php:602 +#: ../../Zotlabs/Module/Setup.php:604 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../Zotlabs/Module/Setup.php:603 ../../Zotlabs/Module/Setup.php:624 +#: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../Zotlabs/Module/Setup.php:604 +#: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "" "Note: as a security measure, you should give the web server write access to " "%s only--not the template files (.tpl) that it contains." msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../Zotlabs/Module/Setup.php:607 +#: ../../Zotlabs/Module/Setup.php:609 #, php-format msgid "%s is writable" msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:623 +#: ../../Zotlabs/Module/Setup.php:625 msgid "" "This software uses the store directory to save uploaded files. The web " "server needs to have write access to the store directory under the top level" " web folder" msgstr "Este software utiliza el directorio de almacenamiento para guardar los ficheros subidos. El servidor web debe tener acceso de escritura a este directorio en la carpeta de nivel superior" -#: ../../Zotlabs/Module/Setup.php:627 +#: ../../Zotlabs/Module/Setup.php:629 msgid "store is writable" msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../Zotlabs/Module/Setup.php:660 +#: ../../Zotlabs/Module/Setup.php:662 msgid "" "If you have https access to your website or allow connections to TCP port " "443 (the https: port), you MUST use a browser-valid certificate. You MUST " "NOT use self-signed certificates!" msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:663 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Se ha incorporado esta restricción para evitar que sus entradas públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Setup.php:662 +#: ../../Zotlabs/Module/Setup.php:664 msgid "" "If your certificate is not recognized, members of other sites (who may " "themselves have valid certificates) will get a warning message on their own " "site complaining about security issues." msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../Zotlabs/Module/Setup.php:663 +#: ../../Zotlabs/Module/Setup.php:665 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Setup.php:664 +#: ../../Zotlabs/Module/Setup.php:666 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../Zotlabs/Module/Setup.php:665 +#: ../../Zotlabs/Module/Setup.php:667 msgid "" "If you are confident that the certificate is valid and signed by a trusted " "authority, check to see if you have failed to install an intermediate cert. " @@ -8953,32 +8993,32 @@ msgid "" "server communications." msgstr "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor." -#: ../../Zotlabs/Module/Setup.php:667 +#: ../../Zotlabs/Module/Setup.php:669 msgid "SSL certificate validation" msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Setup.php:673 +#: ../../Zotlabs/Module/Setup.php:675 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Module/Setup.php:676 +#: ../../Zotlabs/Module/Setup.php:678 msgid "Url rewrite is working" msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Setup.php:689 +#: ../../Zotlabs/Module/Setup.php:691 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../Zotlabs/Module/Setup.php:764 +#: ../../Zotlabs/Module/Setup.php:766 msgid "

What next?

" msgstr "

¿Qué sigue?

" -#: ../../Zotlabs/Module/Setup.php:765 +#: ../../Zotlabs/Module/Setup.php:767 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -9032,18 +9072,18 @@ msgstr "Valorar" #: ../../Zotlabs/Module/Pubsites.php:61 ../../Zotlabs/Module/Webpages.php:261 #: ../../Zotlabs/Module/Events.php:702 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Wiki.php:213 ../../Zotlabs/Module/Wiki.php:409 +#: ../../Zotlabs/Module/Wiki.php:212 ../../Zotlabs/Module/Wiki.php:408 #: ../../Zotlabs/Module/Layouts.php:198 msgid "View" msgstr "Ver" #: ../../Zotlabs/Module/Channel.php:131 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:60 +#: ../../Zotlabs/Module/Profile.php:62 msgid "Posts and comments" msgstr "Publicaciones y comentarios" #: ../../Zotlabs/Module/Channel.php:138 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:67 +#: ../../Zotlabs/Module/Profile.php:69 msgid "Only posts" msgstr "Solo publicaciones" @@ -9051,7 +9091,7 @@ msgstr "Solo publicaciones" msgid "Insufficient permissions. Request redirected to profile page." msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../Zotlabs/Module/Channel.php:482 ../../Zotlabs/Module/Display.php:362 +#: ../../Zotlabs/Module/Channel.php:483 ../../Zotlabs/Module/Display.php:354 msgid "" "You must enable javascript for your browser to be able to view this content." msgstr "Debe habilitar javascript para poder ver este contenido en su navegador." @@ -9218,7 +9258,7 @@ msgid "Key and Secret are required" msgstr "\"Key\" y \"Secret\" son obligatorios" #: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 -#: ../../Zotlabs/Module/Cdav.php:1053 ../../Zotlabs/Module/Cdav.php:1388 +#: ../../Zotlabs/Module/Cdav.php:1054 ../../Zotlabs/Module/Cdav.php:1389 #: ../../Zotlabs/Module/Admin/Addons.php:457 #: ../../Zotlabs/Module/Profiles.php:801 ../../Zotlabs/Module/Oauth2.php:58 #: ../../Zotlabs/Module/Oauth2.php:144 ../../Zotlabs/Module/Connedit.php:932 @@ -9266,11 +9306,6 @@ msgstr "URI de redirección - dejar en blanco a menos que su aplicación especí msgid "Icon url" msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Sources.php:123 -#: ../../Zotlabs/Module/Sources.php:158 -msgid "Optional" -msgstr "Opcional" - #: ../../Zotlabs/Module/Oauth.php:128 msgid "Application not found." msgstr "Aplicación no encontrada." @@ -9315,7 +9350,7 @@ msgstr "¡Bienvenido a Hubzilla!" msgid "You have got no unseen posts..." msgstr "No tiene ningún mensaje sin leer..." -#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:461 +#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:471 msgid "Unable to locate original post." msgstr "No ha sido posible encontrar la entrada original." @@ -9373,7 +9408,7 @@ msgid "No chatrooms available" msgstr "No hay salas de chat disponibles" #: ../../Zotlabs/Module/Chat.php:262 ../../Zotlabs/Module/Manage.php:145 -#: ../../Zotlabs/Module/Profiles.php:833 ../../Zotlabs/Module/Wiki.php:214 +#: ../../Zotlabs/Module/Profiles.php:833 ../../Zotlabs/Module/Wiki.php:213 msgid "Create New" msgstr "Crear" @@ -9420,7 +9455,7 @@ msgid "Delete event" msgstr "Borrar evento" #: ../../Zotlabs/Module/Channel_calendar.php:392 -#: ../../Zotlabs/Module/Cdav.php:943 ../../Zotlabs/Module/Cal.php:165 +#: ../../Zotlabs/Module/Cdav.php:944 ../../Zotlabs/Module/Cal.php:165 msgid "Link to source" msgstr "Enlace a la fuente" @@ -9520,168 +9555,168 @@ msgstr "Elegir qué desea enviar al destinatario" msgid "Make this post private" msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Cdav.php:818 ../../Zotlabs/Module/Events.php:28 +#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Events.php:28 msgid "Calendar entries imported." msgstr "Entradas de calendario importadas." -#: ../../Zotlabs/Module/Cdav.php:820 ../../Zotlabs/Module/Events.php:30 +#: ../../Zotlabs/Module/Cdav.php:821 ../../Zotlabs/Module/Events.php:30 msgid "No calendar entries found." msgstr "No se han encontrado entradas de calendario." -#: ../../Zotlabs/Module/Cdav.php:876 +#: ../../Zotlabs/Module/Cdav.php:877 msgid "CardDAV App" msgstr "App CarDav" -#: ../../Zotlabs/Module/Cdav.php:877 +#: ../../Zotlabs/Module/Cdav.php:878 msgid "CalDAV capable addressbook" msgstr "Libreta de direcciones compatible con CalDav" -#: ../../Zotlabs/Module/Cdav.php:1009 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:468 msgid "Event title" msgstr "Título del evento" -#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:474 +#: ../../Zotlabs/Module/Cdav.php:1011 ../../Zotlabs/Module/Events.php:474 msgid "Start date and time" msgstr "Fecha y hora de comienzo" -#: ../../Zotlabs/Module/Cdav.php:1011 +#: ../../Zotlabs/Module/Cdav.php:1012 msgid "End date and time" msgstr "Fecha y hora de finalización" -#: ../../Zotlabs/Module/Cdav.php:1012 ../../Zotlabs/Module/Events.php:497 +#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Events.php:497 msgid "Timezone:" msgstr "Zona horaria: " -#: ../../Zotlabs/Module/Cdav.php:1035 ../../Zotlabs/Module/Events.php:697 +#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Events.php:697 #: ../../Zotlabs/Module/Events.php:706 ../../Zotlabs/Module/Cal.php:203 #: ../../Zotlabs/Module/Photos.php:947 msgid "Previous" msgstr "Anterior" -#: ../../Zotlabs/Module/Cdav.php:1037 ../../Zotlabs/Module/Events.php:708 +#: ../../Zotlabs/Module/Cdav.php:1038 ../../Zotlabs/Module/Events.php:708 #: ../../Zotlabs/Module/Cal.php:205 msgid "Today" msgstr "Hoy" -#: ../../Zotlabs/Module/Cdav.php:1038 ../../Zotlabs/Module/Events.php:703 +#: ../../Zotlabs/Module/Cdav.php:1039 ../../Zotlabs/Module/Events.php:703 msgid "Month" msgstr "Mes" -#: ../../Zotlabs/Module/Cdav.php:1039 ../../Zotlabs/Module/Events.php:704 +#: ../../Zotlabs/Module/Cdav.php:1040 ../../Zotlabs/Module/Events.php:704 msgid "Week" msgstr "Semana" -#: ../../Zotlabs/Module/Cdav.php:1040 ../../Zotlabs/Module/Events.php:705 +#: ../../Zotlabs/Module/Cdav.php:1041 ../../Zotlabs/Module/Events.php:705 msgid "Day" msgstr "Día" -#: ../../Zotlabs/Module/Cdav.php:1041 +#: ../../Zotlabs/Module/Cdav.php:1042 msgid "List month" msgstr "Lista mensual" -#: ../../Zotlabs/Module/Cdav.php:1042 +#: ../../Zotlabs/Module/Cdav.php:1043 msgid "List week" msgstr "Lista semanal" -#: ../../Zotlabs/Module/Cdav.php:1043 +#: ../../Zotlabs/Module/Cdav.php:1044 msgid "List day" msgstr "Lista diaria" -#: ../../Zotlabs/Module/Cdav.php:1051 +#: ../../Zotlabs/Module/Cdav.php:1052 msgid "More" msgstr "Más" -#: ../../Zotlabs/Module/Cdav.php:1052 +#: ../../Zotlabs/Module/Cdav.php:1053 msgid "Less" msgstr "Menos" -#: ../../Zotlabs/Module/Cdav.php:1054 +#: ../../Zotlabs/Module/Cdav.php:1055 msgid "Select calendar" msgstr "Seleccionar un calendario" -#: ../../Zotlabs/Module/Cdav.php:1057 +#: ../../Zotlabs/Module/Cdav.php:1058 msgid "Delete all" msgstr "Eliminar todos" -#: ../../Zotlabs/Module/Cdav.php:1060 +#: ../../Zotlabs/Module/Cdav.php:1061 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:1373 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Connedit.php:917 msgid "Organisation" msgstr "Organización" -#: ../../Zotlabs/Module/Cdav.php:1375 ../../Zotlabs/Module/Profiles.php:788 +#: ../../Zotlabs/Module/Cdav.php:1376 ../../Zotlabs/Module/Profiles.php:788 #: ../../Zotlabs/Module/Connedit.php:919 msgid "Phone" msgstr "Teléfono" -#: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Profiles.php:790 #: ../../Zotlabs/Module/Connedit.php:921 msgid "Instant messenger" msgstr "Mensajería instantánea" -#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Profiles.php:791 +#: ../../Zotlabs/Module/Cdav.php:1379 ../../Zotlabs/Module/Profiles.php:791 #: ../../Zotlabs/Module/Connedit.php:922 msgid "Website" msgstr "Sitio web" -#: ../../Zotlabs/Module/Cdav.php:1379 +#: ../../Zotlabs/Module/Cdav.php:1380 #: ../../Zotlabs/Module/Admin/Channels.php:160 #: ../../Zotlabs/Module/Profiles.php:504 ../../Zotlabs/Module/Profiles.php:792 #: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Locs.php:129 msgid "Address" msgstr "Dirección" -#: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Profiles.php:793 +#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:793 #: ../../Zotlabs/Module/Connedit.php:924 msgid "Note" msgstr "Nota" -#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Profiles.php:798 #: ../../Zotlabs/Module/Connedit.php:929 msgid "Add Contact" msgstr "Añadir un contacto" -#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Module/Cdav.php:1387 ../../Zotlabs/Module/Profiles.php:799 #: ../../Zotlabs/Module/Connedit.php:930 msgid "Add Field" msgstr "Añadir un campo" -#: ../../Zotlabs/Module/Cdav.php:1391 ../../Zotlabs/Module/Connedit.php:935 +#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:935 msgid "P.O. Box" msgstr "Buzón de correos" -#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:936 +#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:936 msgid "Additional" msgstr "Adicional" -#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:937 msgid "Street" msgstr "Calle" -#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:938 +#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:938 msgid "Locality" msgstr "Localidad" -#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:939 +#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:939 msgid "Region" msgstr "Provincia, región o estado" -#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:940 +#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Connedit.php:940 msgid "ZIP Code" msgstr "Código postal" -#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Profiles.php:759 +#: ../../Zotlabs/Module/Cdav.php:1398 ../../Zotlabs/Module/Profiles.php:759 #: ../../Zotlabs/Module/Connedit.php:941 msgid "Country" msgstr "País" -#: ../../Zotlabs/Module/Cdav.php:1456 +#: ../../Zotlabs/Module/Cdav.php:1457 msgid "Default Calendar" msgstr "Calendario por defecto" -#: ../../Zotlabs/Module/Cdav.php:1467 +#: ../../Zotlabs/Module/Cdav.php:1468 msgid "Default Addressbook" msgstr "Agenda de direcciones por defecto" @@ -9699,32 +9734,32 @@ msgctxt "acl" msgid "Profile" msgstr "Perfil" -#: ../../Zotlabs/Module/Item.php:747 +#: ../../Zotlabs/Module/Item.php:757 msgid "Empty post discarded." msgstr "La entrada vacía ha sido desechada." -#: ../../Zotlabs/Module/Item.php:1181 +#: ../../Zotlabs/Module/Item.php:1189 msgid "Duplicate post suppressed." msgstr "Se ha suprimido la entrada duplicada." -#: ../../Zotlabs/Module/Item.php:1326 +#: ../../Zotlabs/Module/Item.php:1334 msgid "System error. Post not saved." msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../Zotlabs/Module/Item.php:1360 +#: ../../Zotlabs/Module/Item.php:1368 msgid "Your comment is awaiting approval." msgstr "Su comentario está pendiente de aprobación." -#: ../../Zotlabs/Module/Item.php:1490 +#: ../../Zotlabs/Module/Item.php:1498 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:1497 +#: ../../Zotlabs/Module/Item.php:1505 #, 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:1504 +#: ../../Zotlabs/Module/Item.php:1512 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Ha alcanzado su límite de %1$.0f páginas web." @@ -10073,15 +10108,11 @@ msgstr "Canal premium o restringido" msgid "Not found" msgstr "No encontrado" -#: ../../Zotlabs/Module/Cloud.php:126 -msgid "Please refresh page" -msgstr "Por favor, recargue la página" - -#: ../../Zotlabs/Module/Cloud.php:129 +#: ../../Zotlabs/Module/Cloud.php:130 msgid "Unknown error" msgstr "Error desconocido" -#: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2154 +#: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2186 #, php-format msgid "🔁 Repeated %1$s's %2$s" msgstr "🔁 Repetidos %2$sde %1$s" @@ -10125,7 +10156,7 @@ msgid "Do you authorize the app %s to access your channel data?" msgstr "¿Autoriza a la aplicación %s a acceder a los datos de su canal?" #: ../../Zotlabs/Module/Authorize.php:33 -#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Accounts.php:319 msgid "Deny" msgstr "Rechazar" @@ -10182,13 +10213,13 @@ msgstr "Instantánea de pantalla" #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 #: ../../Zotlabs/Module/Admin/Security.php:98 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Accounts.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:408 #: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Addons.php:342 #: ../../Zotlabs/Module/Admin/Addons.php:440 -#: ../../Zotlabs/Module/Admin.php:138 +#: ../../Zotlabs/Module/Admin.php:141 msgid "Administration" msgstr "Administración" @@ -10357,526 +10388,690 @@ msgstr "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso." msgid "Allow embedded (inline) PDF files" msgstr "Permitir ficheros PDF incrustados (en línea)" -#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#: ../../Zotlabs/Module/Admin/Accounts.php:128 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s cuenta bloqueada/desbloqueada" msgstr[1] "%s cuenta bloqueada/desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#: ../../Zotlabs/Module/Admin/Accounts.php:135 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s cuentas eliminadas" msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Admin/Accounts.php:80 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "Account not found" msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#: ../../Zotlabs/Module/Admin/Accounts.php:192 #, php-format msgid "Account '%s' blocked" msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#: ../../Zotlabs/Module/Admin/Accounts.php:200 #, php-format msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "seleccionar todo" +#: ../../Zotlabs/Module/Admin/Accounts.php:240 +msgid "Unverified" +msgstr "Sin verificar" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Inscripciones en espera de confirmación" +#: ../../Zotlabs/Module/Admin/Accounts.php:243 +msgid "Expired" +msgstr "Caducado/a" -#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show verified registrations" +msgstr "Mostrar registros verificados" + +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show all registrations" +msgstr "Mostrar todos los registros" + +#: ../../Zotlabs/Module/Admin/Accounts.php:312 +msgid "Select toggle" +msgstr "Seleccionar alternar" + +#: ../../Zotlabs/Module/Admin/Accounts.php:313 +msgid "Deny selected" +msgstr "Denegar seleccionado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:314 +msgid "Approve selected" +msgstr "Aprobar seleccionado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "All registrations" +msgstr "Todos los registros" + +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "Verified registrations waiting for approval" +msgstr "Registros verificados en espera de aprobación" + +#: ../../Zotlabs/Module/Admin/Accounts.php:316 msgid "Request date" msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Sin registros." +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Requests" +msgstr "Solicitudes" + +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No registrations available" +msgstr "No hay registros disponibles" -#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No verified registrations available" +msgstr "No hay registros verificados disponibles" + +#: ../../Zotlabs/Module/Admin/Accounts.php:321 #: ../../Zotlabs/Module/Connedit.php:629 msgid "Block" msgstr "Bloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Admin/Accounts.php:322 #: ../../Zotlabs/Module/Connedit.php:629 msgid "Unblock" msgstr "Desbloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Admin/Accounts.php:323 +msgid "Verified" +msgstr "Verificado/a" + +#: ../../Zotlabs/Module/Admin/Accounts.php:324 +msgid "Not yet verified" +msgstr "Aún no se ha verificado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:329 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "All Channels" +#: ../../Zotlabs/Module/Admin/Accounts.php:331 +msgid "All channels" msgstr "Todos los canales" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 +#: ../../Zotlabs/Module/Admin/Accounts.php:332 msgid "Register date" msgstr "Fecha de registro" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 +#: ../../Zotlabs/Module/Admin/Accounts.php:333 msgid "Last login" msgstr "Último acceso" -#: ../../Zotlabs/Module/Admin/Accounts.php:187 +#: ../../Zotlabs/Module/Admin/Accounts.php:334 msgid "Expires" msgstr "Caduca" -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" +#: ../../Zotlabs/Module/Admin/Accounts.php:335 +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Service class" msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Admin/Accounts.php:190 +#: ../../Zotlabs/Module/Admin/Accounts.php:337 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted" " on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin/Accounts.php:191 +#: ../../Zotlabs/Module/Admin/Accounts.php:338 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin/Site.php:165 +#: ../../Zotlabs/Module/Admin/Site.php:112 +msgid "Invalid input" +msgstr "Entrada no válida" + +#: ../../Zotlabs/Module/Admin/Site.php:132 +msgid "Errors" +msgstr "Errores" + +#: ../../Zotlabs/Module/Admin/Site.php:225 msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin/Site.php:202 +#: ../../Zotlabs/Module/Admin/Site.php:262 #: ../../Zotlabs/Module/Settings/Display.php:118 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (Incompatible)" -#: ../../Zotlabs/Module/Admin/Site.php:209 +#: ../../Zotlabs/Module/Admin/Site.php:269 msgid "mobile" msgstr "móvil" -#: ../../Zotlabs/Module/Admin/Site.php:211 +#: ../../Zotlabs/Module/Admin/Site.php:271 msgid "experimental" msgstr "experimental" -#: ../../Zotlabs/Module/Admin/Site.php:213 +#: ../../Zotlabs/Module/Admin/Site.php:273 msgid "unsupported" msgstr "no soportado" -#: ../../Zotlabs/Module/Admin/Site.php:260 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Yes - with approval" msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "My site is not a public server" msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "My site has paid access only" msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "My site has free access only" msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin/Site.php:269 +#: ../../Zotlabs/Module/Admin/Site.php:331 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:283 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Default permission role for new accounts" msgstr "Permisos de rol por defecto para las nuevas cuentas" -#: ../../Zotlabs/Module/Admin/Site.php:283 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "" "This role will be used for the first channel created after registration." msgstr "Este rol se utilizará para el primer canal creado después del registro." -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:353 ../../Zotlabs/Module/Invite.php:398 +msgid "Minute(s)" +msgstr "Minuto(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:354 ../../Zotlabs/Module/Invite.php:399 +msgid "Hour(s)" +msgstr "Hora(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:355 ../../Zotlabs/Module/Invite.php:400 +msgid "Day(s)" +msgstr "Día(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Week(s)" +msgstr "Semana(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:357 +msgid "Month(s)" +msgstr "Mes(Meses)" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Year(s)" +msgstr "Año(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:366 +msgid "Register verification delay" +msgstr "Retraso en la verificación del registro" + +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "Time to wait before a registration can be verified" +msgstr "Tiempo de espera para verificar un registro " + +#: ../../Zotlabs/Module/Admin/Site.php:372 +#: ../../Zotlabs/Module/Admin/Site.php:394 ../../Zotlabs/Module/Invite.php:409 +msgid "duration up from now" +msgstr "duración a partir de ahora " + +#: ../../Zotlabs/Module/Admin/Site.php:388 +msgid "Register verification expiration time" +msgstr "Tiempo de caducidad de la verificación del registro " + +#: ../../Zotlabs/Module/Admin/Site.php:391 +msgid "Time before an unverified registration will expire" +msgstr "Tiempo antes de que caduque un registro no verificado " + +#: ../../Zotlabs/Module/Admin/Site.php:414 msgid "File upload" msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:415 msgid "Policies" msgstr "Políticas" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:422 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:422 msgid "Unfiltered HTML/CSS/JS is allowed" msgstr "Se permite HTML/CSS/JS sin filtrar" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:423 msgid "Administrator Information" msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:423 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:305 +#: ../../Zotlabs/Module/Admin/Site.php:424 #: ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" msgstr "Información sobre el sitio" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:424 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:306 +#: ../../Zotlabs/Module/Admin/Site.php:425 msgid "System language" msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:426 msgid "System theme" msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:426 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:429 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:429 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:430 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:430 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:312 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Invitation only" -msgstr "Solo con una invitación" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -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:314 +#: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age" msgstr "Edad mínima" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age (in years) for who may register on this site." msgstr "Edad mínima (en años) para poder registrarse en este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:432 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:315 +#: ../../Zotlabs/Module/Admin/Site.php:432 msgid "This is displayed on the public server site list." msgstr "Esto se muestra en la lista de sitios de servidores públicos." -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:438 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin/Site.php:316 -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:440 +msgid "This text will be displayed prominently at the registration page" +msgstr "Este texto se mostrará de forma destacada en la página de registro " -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:444 +msgid "Does this site allow new member registration?" +msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" + +#: ../../Zotlabs/Module/Admin/Site.php:451 +msgid "Configure the registration open days/hours" +msgstr "Configurar los días/horas de apertura del registro" + +#: ../../Zotlabs/Module/Admin/Site.php:453 +msgid "Empty or '-:-' value will keep registration open 24/7 (default)" +msgstr "El valor vacío o \"-:-\" mantendrá el registro abierto 24/7 (por defecto)" + +#: ../../Zotlabs/Module/Admin/Site.php:454 +msgid "" +"Weekdays and hours must be separated by colon ':', From-To ranges with a " +"dash `-` example: 1:800-1200" +msgstr "Los días de la semana y las horas deben separarse con dos puntos ':', los rangos Desde-Hasta con un guión `-` ejemplo: 1:800-1200" + +#: ../../Zotlabs/Module/Admin/Site.php:455 +msgid "" +"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " +"2:900-1700" +msgstr "Los pares día de la semana:hora deben estar separados por un espacio ' ' ejemplo: 1:900-1700 2:900-1700" + +#: ../../Zotlabs/Module/Admin/Site.php:456 +msgid "" +"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " +"or 1-2,4-5:900-1700" +msgstr "Los rangos desde-hasta deben estar separados por comas ',' ejemplo: 1:800-1200,1300-1700 o 1-2,4-5:900-1700" + +#: ../../Zotlabs/Module/Admin/Site.php:457 +msgid "Advanced examples:" +msgstr "Ejemplos avanzados: " + +#: ../../Zotlabs/Module/Admin/Site.php:457 +#: ../../Zotlabs/Module/Settings/Channel.php:420 +msgid "or" +msgstr "o" + +#: ../../Zotlabs/Module/Admin/Site.php:458 +msgid "Check your configuration" +msgstr "Compruebe su configuración" + +#: ../../Zotlabs/Module/Admin/Site.php:462 +msgid "Max account registrations per day" +msgstr "Máximo de registros de cuentas por día " + +#: ../../Zotlabs/Module/Admin/Site.php:464 +msgid "Unlimited if zero or no value - default 50" +msgstr "Ilimitado si es cero o sin valor - por defecto 50" + +#: ../../Zotlabs/Module/Admin/Site.php:468 +msgid "Max account registrations from same IP" +msgstr "Máximo de registros de cuentas desde la misma IP" + +#: ../../Zotlabs/Module/Admin/Site.php:470 +msgid "Unlimited if zero or no value - default 3" +msgstr "Ilimitado si es cero o sin valor - por defecto 3" + +#: ../../Zotlabs/Module/Admin/Site.php:476 +msgid "Auto channel create" +msgstr "Creación automática de canales" + +#: ../../Zotlabs/Module/Admin/Site.php:478 +msgid "" +"If disabled the channel will be created in a separate step during the " +"registration process" +msgstr "Si se desactiva, el canal se creará en un paso separado durante el proceso de registro" + +#: ../../Zotlabs/Module/Admin/Site.php:482 +msgid "Require invite code" +msgstr "Solicitar código de invitación" + +#: ../../Zotlabs/Module/Admin/Site.php:487 +msgid "Allow invite code" +msgstr "Permitir código de invitación" + +#: ../../Zotlabs/Module/Admin/Site.php:492 +msgid "Require email address" +msgstr "Solicitar dirección de correo electrónico" + +#: ../../Zotlabs/Module/Admin/Site.php:494 +msgid "The provided email address will be verified (recommended)" +msgstr "La dirección de correo electrónico proporcionada será verificada (recomendado)" + +#: ../../Zotlabs/Module/Admin/Site.php:498 +msgid "Abandon account after x days" +msgstr "Abandonar la cuenta después de x días" + +#: ../../Zotlabs/Module/Admin/Site.php:500 +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:505 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:318 +#: ../../Zotlabs/Module/Admin/Site.php:505 msgid "" "example: 'pubstream' to show public stream, 'page/sys/home' to show a system" " webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'pubstream' para mostrar el stream público, 'page/sys/home' para mostrar una página web del sistema llamada 'home' o 'include:home.html' para incluir un archivo." -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:506 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:506 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:320 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -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:321 +#: ../../Zotlabs/Module/Admin/Site.php:507 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:507 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:322 -msgid "Verify Email Addresses" -msgstr "Verificar las direcciones de correo electrónico" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -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:323 +#: ../../Zotlabs/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:508 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:324 +#: ../../Zotlabs/Module/Admin/Site.php:509 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:509 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:325 +#: ../../Zotlabs/Module/Admin/Site.php:510 msgid "Site only Public Streams" msgstr "Solo contenido público en este sitio" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:510 msgid "" "Allow access to public content originating only from this site if Imported " "Public Streams are disabled." msgstr "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados." -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:511 msgid "Allow anybody on the internet to access the Public streams" msgstr "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:511 msgid "" "Disable to require authentication before viewing. Warning: this content is " "unmoderated." msgstr "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado." -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:512 msgid "Only import Public stream posts with this text" msgstr "Importar solo entradas del stream púlbico con este texto " -#: ../../Zotlabs/Module/Admin/Site.php:327 -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:512 +#: ../../Zotlabs/Module/Admin/Site.php:513 #: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 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/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:513 msgid "Do not import Public stream posts with this text" msgstr "No importar entradas del stream público con este texto " -#: ../../Zotlabs/Module/Admin/Site.php:331 +#: ../../Zotlabs/Module/Admin/Site.php:516 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:331 +#: ../../Zotlabs/Module/Admin/Site.php:516 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:332 +#: ../../Zotlabs/Module/Admin/Site.php:517 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin/Site.php:332 +#: ../../Zotlabs/Module/Admin/Site.php:517 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:334 +#: ../../Zotlabs/Module/Admin/Site.php:519 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:335 +#: ../../Zotlabs/Module/Admin/Site.php:520 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:336 +#: ../../Zotlabs/Module/Admin/Site.php:521 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:338 +#: ../../Zotlabs/Module/Admin/Site.php:523 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin/Site.php:338 +#: ../../Zotlabs/Module/Admin/Site.php:523 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:340 +#: ../../Zotlabs/Module/Admin/Site.php:525 msgid "Enable SSE Notifications" msgstr "Habilitar notificaciones SSE" -#: ../../Zotlabs/Module/Admin/Site.php:340 +#: ../../Zotlabs/Module/Admin/Site.php:525 msgid "" "If disabled, traditional polling will be used. Warning: this setting might " "not be suited for shared hosting" msgstr "Si está desactivado, se usará el sistema de votación tradicional. Advertencia: esta configuración podría no ser adecuada para el alojamiento compartido" -#: ../../Zotlabs/Module/Admin/Site.php:342 +#: ../../Zotlabs/Module/Admin/Site.php:527 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:343 +#: ../../Zotlabs/Module/Admin/Site.php:528 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:344 +#: ../../Zotlabs/Module/Admin/Site.php:529 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin/Site.php:344 +#: ../../Zotlabs/Module/Admin/Site.php:529 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:345 +#: ../../Zotlabs/Module/Admin/Site.php:530 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin/Site.php:345 +#: ../../Zotlabs/Module/Admin/Site.php:530 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:346 +#: ../../Zotlabs/Module/Admin/Site.php:531 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin/Site.php:346 +#: ../../Zotlabs/Module/Admin/Site.php:531 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:347 +#: ../../Zotlabs/Module/Admin/Site.php:532 msgid "Queue Threshold" msgstr "Umbral de la cola de espera" -#: ../../Zotlabs/Module/Admin/Site.php:347 +#: ../../Zotlabs/Module/Admin/Site.php:532 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas." -#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Admin/Site.php:533 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Admin/Site.php:533 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:349 +#: ../../Zotlabs/Module/Admin/Site.php:534 msgid "Path to ImageMagick convert program" msgstr "Ruta al programa de conversión de ImageMagick" -#: ../../Zotlabs/Module/Admin/Site.php:349 +#: ../../Zotlabs/Module/Admin/Site.php:534 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:350 +#: ../../Zotlabs/Module/Admin/Site.php:535 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin/Site.php:350 +#: ../../Zotlabs/Module/Admin/Site.php:535 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:351 +#: ../../Zotlabs/Module/Admin/Site.php:536 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:351 +#: ../../Zotlabs/Module/Admin/Site.php:536 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" -#: ../../Zotlabs/Module/Admin/Site.php:352 +#: ../../Zotlabs/Module/Admin/Site.php:537 msgid "" "Do not expire any posts which have comments less than this many days ago" msgstr "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días" -#: ../../Zotlabs/Module/Admin/Site.php:354 +#: ../../Zotlabs/Module/Admin/Site.php:538 msgid "" "Public servers: Optional landing (marketing) webpage for new registrants" msgstr "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros" -#: ../../Zotlabs/Module/Admin/Site.php:354 +#: ../../Zotlabs/Module/Admin/Site.php:538 #, php-format msgid "Create this page first. Default is %s/register" msgstr "Crear esta página primero. Por defecto es %s/register" -#: ../../Zotlabs/Module/Admin/Site.php:355 +#: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Page to display after creating a new channel" msgstr "Página a mostrar después de la creación de un nuevo canal" -#: ../../Zotlabs/Module/Admin/Site.php:355 +#: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Default: profiles" msgstr "Perfiles predeterminados" -#: ../../Zotlabs/Module/Admin/Site.php:357 +#: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Optional: site location" msgstr "Opcional: ubicación del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:357 +#: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Region or country" msgstr "Región o país" +#: ../../Zotlabs/Module/Admin/Site.php:625 +#: ../../Zotlabs/Module/Admin/Site.php:626 +msgid "Invalid 24h time value (hhmm/hmm)" +msgstr "Valor de tiempo de 24h no válido (hhmm/hmm)" + #: ../../Zotlabs/Module/Admin/Logs.php:28 msgid "Log settings updated." msgstr "Actualizado el informe de configuraciones." @@ -10953,6 +11148,10 @@ msgstr "Código permitido al canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "seleccionar todo" + #: ../../Zotlabs/Module/Admin/Channels.php:150 #: ../../Zotlabs/Module/Directory.php:362 msgid "Censor" @@ -11016,10 +11215,6 @@ msgstr "Nueva contraseña otra vez" msgid "Account language (for emails)" msgstr "Idioma de la cuenta (para los correos electrónicos)" -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Service class" -msgstr "Clase de servicio" - #: ../../Zotlabs/Module/Admin/Profs.php:89 msgid "New Profile Field" msgstr "Nuevo campo en el perfil" @@ -11286,6 +11481,129 @@ msgstr "Por favor, introduzca su contraseña para su verificación:" msgid "Remove Channel" msgstr "Eliminar el canal" +#: ../../Zotlabs/Module/Regate.php:81 +msgid "Email resent" +msgstr "Correo electrónico reenviado" + +#: ../../Zotlabs/Module/Regate.php:81 +msgid "Email resend failed" +msgstr "Fallo en el reenvío del correo electrónico" + +#: ../../Zotlabs/Module/Regate.php:105 +msgid "Verify successfull" +msgstr "Verificar que se ha hecho bien" + +#: ../../Zotlabs/Module/Regate.php:149 +msgid "Account successfull created" +msgstr "Cuenta creada con éxito" + +#: ../../Zotlabs/Module/Regate.php:190 +msgid "Channel successfull created" +msgstr "Canal creado con éxito" + +#: ../../Zotlabs/Module/Regate.php:196 +msgid "Automatic channel creation failed. Please create a channel." +msgstr "La creación automática de canales ha fallado. Por favor, cree un canal." + +#: ../../Zotlabs/Module/Regate.php:208 +msgid "Account creation error" +msgstr "Error en la creación de la cuenta" + +#: ../../Zotlabs/Module/Regate.php:220 +msgid "Verify failed" +msgstr "Verificación fallida" + +#: ../../Zotlabs/Module/Regate.php:225 +msgid "Token verification failed" +msgstr "Ha fallado el token de verificación." + +#: ../../Zotlabs/Module/Regate.php:230 +msgid "Request not inside time frame" +msgstr "Solicitud fuera de plazo" + +#: ../../Zotlabs/Module/Regate.php:236 ../../Zotlabs/Module/Regate.php:266 +msgid "Identity unknown" +msgstr "Identidad desconocida" + +#: ../../Zotlabs/Module/Regate.php:242 +msgid "dId2 mistaken" +msgstr "did2 equivocado/a" + +#: ../../Zotlabs/Module/Regate.php:270 +msgid "Your Registration ID" +msgstr "Su ID de registro" + +#: ../../Zotlabs/Module/Regate.php:283 ../../Zotlabs/Module/Regate.php:374 +#: ../../Zotlabs/Module/Regate.php:403 +msgid "Registration verification" +msgstr "Verificación del registro" + +#: ../../Zotlabs/Module/Regate.php:290 ../../Zotlabs/Module/Regate.php:408 +msgid "Hold on, you can start verification in" +msgstr "Espere, puede empezar la verificación en " + +#: ../../Zotlabs/Module/Regate.php:291 +msgid "Please remember your verification token for ID" +msgstr "Por favor, recuerde su token de verificación para la identificación" + +#: ../../Zotlabs/Module/Regate.php:292 +msgid "Token validity" +msgstr "Validez del token" + +#: ../../Zotlabs/Module/Regate.php:328 +msgid "Resend" +msgstr "Reenviar" + +#: ../../Zotlabs/Module/Regate.php:333 +msgid "Registration status" +msgstr "Estado del registro" + +#: ../../Zotlabs/Module/Regate.php:336 +msgid "Verification successful!" +msgstr "¡Verificación exitosa!" + +#: ../../Zotlabs/Module/Regate.php:337 +msgid "Your login ID is" +msgstr "Su ID de acceso es" + +#: ../../Zotlabs/Module/Regate.php:338 +msgid "" +"After your account has been approved by our administrator you will be able " +"to login with your login ID and your provided password." +msgstr "Una vez que su cuenta haya sido aprobada por nuestro administrador, podrá iniciar sesión con su ID de acceso y la contraseña proporcionada." + +#: ../../Zotlabs/Module/Regate.php:350 +msgid "Registration request revoked" +msgstr "Solicitud de registro anulada" + +#: ../../Zotlabs/Module/Regate.php:351 +msgid "Sorry for any inconvience. Thank you for your response." +msgstr "Disculpe las molestias. Gracias por su respuesta." + +#: ../../Zotlabs/Module/Regate.php:375 +msgid "Please enter your verification token for ID" +msgstr "Por favor, introduzca su token de verificación para la identificación" + +#: ../../Zotlabs/Module/Regate.php:385 +msgid "Verification token" +msgstr "Token de verificación " + +#: ../../Zotlabs/Module/Regate.php:396 +msgid "ID expired" +msgstr "ID caducada" + +#: ../../Zotlabs/Module/Regate.php:409 +msgid "You will require the verification token for ID" +msgstr "Necesitará el token de verificación para identificarse" + +#: ../../Zotlabs/Module/Regate.php:417 +msgid "Unknown or expired ID" +msgstr "ID desconocida o caducada" + +#: ../../Zotlabs/Module/Regate.php:428 +msgid "dId2 malformed" +msgstr "did2 malformado/a" + #: ../../Zotlabs/Module/Events.php:468 msgid "Edit event title" msgstr "Editar el título del evento" @@ -11534,7 +11852,7 @@ msgid "" msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." #: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:105 +#: ../../Zotlabs/Module/Settings/Account.php:109 msgid "Remove Account" msgstr "Eliminar cuenta" @@ -11546,30 +11864,30 @@ msgstr "App idioma" msgid "Change UI language" msgstr "Cambiar el idioma de la interfaz de usuario" -#: ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Uexport.php:62 msgid "Channel Export App" msgstr "App Exportación de canales" -#: ../../Zotlabs/Module/Uexport.php:62 +#: ../../Zotlabs/Module/Uexport.php:63 msgid "Export your channel" msgstr "Exportar su canal" -#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 +#: ../../Zotlabs/Module/Uexport.php:73 ../../Zotlabs/Module/Uexport.php:74 msgid "Export Channel" msgstr "Exportar el canal" -#: ../../Zotlabs/Module/Uexport.php:74 +#: ../../Zotlabs/Module/Uexport.php:75 msgid "" "Export your basic channel information to a file. This acts as a backup of " "your connections, permissions, profile and basic data, which can be used to " "import your data to a new server hub, but does not contain your content." msgstr "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." -#: ../../Zotlabs/Module/Uexport.php:75 +#: ../../Zotlabs/Module/Uexport.php:76 msgid "Export Content" msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Uexport.php:76 +#: ../../Zotlabs/Module/Uexport.php:77 msgid "" "Export your channel information and recent content to a JSON backup that can" " be restored or imported to another server hub. This backs up all of your " @@ -11578,11 +11896,11 @@ msgid "" " this download to begin." msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../Zotlabs/Module/Uexport.php:78 +#: ../../Zotlabs/Module/Uexport.php:79 msgid "Export your posts from a given year." msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Uexport.php:80 +#: ../../Zotlabs/Module/Uexport.php:81 msgid "" "You may also export your posts and conversations for a particular year or " "month. Adjust the date in your browser location bar to select other dates. " @@ -11590,21 +11908,21 @@ msgid "" "please try again selecting a more limited date range." msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../Zotlabs/Module/Uexport.php:81 +#: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" "To select all posts for a given year, such as this year, visit %2$s" msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" -#: ../../Zotlabs/Module/Uexport.php:82 +#: ../../Zotlabs/Module/Uexport.php:83 #, php-format msgid "" "To select all posts for a given month, such as January of this year, visit " "%2$s" msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" -#: ../../Zotlabs/Module/Uexport.php:83 +#: ../../Zotlabs/Module/Uexport.php:84 #, php-format msgid "" "These content files may be imported or restored by visiting %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../Zotlabs/Module/Display.php:380 +#: ../../Zotlabs/Module/Display.php:372 msgid "Article" msgstr "Artículo" -#: ../../Zotlabs/Module/Display.php:425 +#: ../../Zotlabs/Module/Display.php:417 msgid "Item has been removed." msgstr "Se ha eliminado el elemento." @@ -11664,12 +11982,21 @@ msgstr "Los caracteres permitidos son a-z 0-9, - and _" msgid "Channel name" msgstr "Nombre del canal" +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" + #: ../../Zotlabs/Module/New_channel.php:178 msgid "" "Select a channel permission role compatible with your usage needs and " "privacy requirements." msgstr "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad." +#: ../../Zotlabs/Module/New_channel.php:178 +msgid "Read more about channel permission roles" +msgstr "Leer más sobre los roles y permisos" + #: ../../Zotlabs/Module/New_channel.php:181 msgid "Create a Channel" msgstr "Crear un canal" @@ -11698,7 +12025,7 @@ msgstr "le ha enviado un mensaje privado" msgid "added your channel" msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Ping.php:418 ../../Zotlabs/Lib/Enotify.php:986 +#: ../../Zotlabs/Module/Ping.php:418 msgid "requires approval" msgstr "requiere aprobación" @@ -11719,11 +12046,11 @@ msgstr "publicó un evento" msgid "shared a file with you" msgstr "compartió un archivo con usted" -#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:540 +#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:554 msgid "Private forum" msgstr "Foro privado" -#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:540 +#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:554 msgid "Public forum" msgstr "Foro público" @@ -11857,43 +12184,43 @@ msgstr "Cuentas caducadas" msgid "Expiring accounts" msgstr "Cuentas que caducan" -#: ../../Zotlabs/Module/Admin.php:120 +#: ../../Zotlabs/Module/Admin.php:123 msgid "Message queues" msgstr "Mensajes en cola" -#: ../../Zotlabs/Module/Admin.php:134 +#: ../../Zotlabs/Module/Admin.php:137 msgid "Your software should be updated" msgstr "Debe actualizar su software" -#: ../../Zotlabs/Module/Admin.php:139 +#: ../../Zotlabs/Module/Admin.php:142 msgid "Summary" msgstr "Sumario" -#: ../../Zotlabs/Module/Admin.php:142 +#: ../../Zotlabs/Module/Admin.php:145 msgid "Registered accounts" msgstr "Cuentas registradas" -#: ../../Zotlabs/Module/Admin.php:143 +#: ../../Zotlabs/Module/Admin.php:146 msgid "Pending registrations" msgstr "Registros pendientes" -#: ../../Zotlabs/Module/Admin.php:144 +#: ../../Zotlabs/Module/Admin.php:147 msgid "Registered channels" msgstr "Canales registrados" -#: ../../Zotlabs/Module/Admin.php:145 +#: ../../Zotlabs/Module/Admin.php:148 msgid "Active addons" msgstr "Addons acivos" -#: ../../Zotlabs/Module/Admin.php:146 +#: ../../Zotlabs/Module/Admin.php:149 msgid "Version" msgstr "Versión" -#: ../../Zotlabs/Module/Admin.php:147 +#: ../../Zotlabs/Module/Admin.php:150 msgid "Repository version (master)" msgstr "Versión del repositorio (master)" -#: ../../Zotlabs/Module/Admin.php:148 +#: ../../Zotlabs/Module/Admin.php:151 msgid "Repository version (dev)" msgstr "Versión del repositorio (dev)" @@ -12132,7 +12459,7 @@ msgid "Use a photo from your albums" msgstr "Usar una foto de sus álbumes" #: ../../Zotlabs/Module/Profile_photo.php:511 -#: ../../Zotlabs/Module/Cover_photo.php:432 ../../Zotlabs/Module/Wiki.php:405 +#: ../../Zotlabs/Module/Cover_photo.php:432 ../../Zotlabs/Module/Wiki.php:404 msgid "Choose a different album" msgstr "Elegir un álbum diferente..." @@ -12217,7 +12544,7 @@ msgstr "Archivadas o inaccesibles" #: ../../Zotlabs/Module/Connections.php:83 #: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:180 -#: ../../Zotlabs/Module/Notifications.php:50 +#: ../../Zotlabs/Module/Notifications.php:53 msgid "New" msgstr "Nuevas" @@ -12526,7 +12853,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:1720 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1725 msgid "Password Reset" msgstr "Restablecer la contraseña" @@ -12743,7 +13070,7 @@ msgid "Your full name" msgstr "Nombre completo" #: ../../Zotlabs/Module/Profiles.php:752 -msgid "Short title/tescription" +msgid "Short title/description" msgstr "Breve título y descripción" #: ../../Zotlabs/Module/Profiles.php:752 @@ -12842,12 +13169,12 @@ msgstr "Mis otros canales" msgid "Communications" msgstr "Comunicaciones" -#: ../../Zotlabs/Module/Subthread.php:143 +#: ../../Zotlabs/Module/Subthread.php:128 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "%1$s está siguiendo %3$s de %2$s" -#: ../../Zotlabs/Module/Subthread.php:145 +#: ../../Zotlabs/Module/Subthread.php:130 #, php-format msgid "%1$s stopped following %2$s's %3$s" msgstr "%1$s ha dejado de seguir %3$s de %2$s" @@ -12914,74 +13241,121 @@ msgstr "Nueva dirección del canal" msgid "Rename Channel" msgstr "Renombrar el canal" -#: ../../Zotlabs/Module/Invite.php:37 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." +#: ../../Zotlabs/Module/Invite.php:56 ../../Zotlabs/Module/Invite.php:310 +msgid "Invite App" +msgstr "Solicitar una app" + +#: ../../Zotlabs/Module/Invite.php:68 +msgid "Register is closed" +msgstr "El registro está cerrado" -#: ../../Zotlabs/Module/Invite.php:61 +#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Invite.php:549 +msgid "Note, the invitation code is valid up to" +msgstr "Tenga en cuenta que el código de invitación es válido hasta " + +#: ../../Zotlabs/Module/Invite.php:115 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " +msgid "Too many recipients for one invitation (max %d)" +msgstr "Demasiados destinatarios para una invitación (máx %d)" -#: ../../Zotlabs/Module/Invite.php:75 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" +#: ../../Zotlabs/Module/Invite.php:119 +msgid "No recipients for this invitation" +msgstr "No hay destinatarios para esta invitación" -#: ../../Zotlabs/Module/Invite.php:85 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." +#: ../../Zotlabs/Module/Invite.php:133 +#, php-format +msgid "(%s) : Not a valid email address" +msgstr "(%s): No es una dirección de correo electrónico válida" -#: ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Invite.php:138 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." +msgid "(%s) : Not a real email address" +msgstr "(%s) : No es una dirección de correo electrónica real" -#: ../../Zotlabs/Module/Invite.php:110 -msgid "Invite App" -msgstr "Solicitar una app" +#: ../../Zotlabs/Module/Invite.php:145 +#, php-format +msgid "(%s) : Not allowed email address" +msgstr "(%s) : Dirección de correo electrónico no permitida" -#: ../../Zotlabs/Module/Invite.php:111 -msgid "Send email invitations to join this network" -msgstr "Enviar invitaciones por correo electrónico para unirse a esta red" +#: ../../Zotlabs/Module/Invite.php:158 +#, php-format +msgid "(%s) : email address already in use" +msgstr "(%s) : La dirección de correo electrónico ya está en uso" + +#: ../../Zotlabs/Module/Invite.php:165 +#, php-format +msgid "(%s) : Accepted email address" +msgstr "(%s) : Dirección de correo electrónico aceptada" + +#: ../../Zotlabs/Module/Invite.php:257 +#, php-format +msgid "To %s : Message delivery success." +msgstr "To %s : Entrega exitosa del mensaje." + +#: ../../Zotlabs/Module/Invite.php:289 +#, php-format +msgid "%1$d mail(s) sent, %2$d mail error(s)" +msgstr "%1$d correo(s) enviado, %2$d error(es) de correo" -#: ../../Zotlabs/Module/Invite.php:124 +#: ../../Zotlabs/Module/Invite.php:315 +msgid "Invites not proposed by configuration" +msgstr "Invitaciones no propuestas por la configuración" + +#: ../../Zotlabs/Module/Invite.php:316 +msgid "Contact the site admin" +msgstr "Contactar con el administrador del sitio" + +#: ../../Zotlabs/Module/Invite.php:332 +msgid "Invites by users not enabled" +msgstr "Invitaciones de usuarios no habilitadas" + +#: ../../Zotlabs/Module/Invite.php:337 msgid "You have no more invitations available" msgstr "No tiene más invitaciones disponibles" -#: ../../Zotlabs/Module/Invite.php:155 +#: ../../Zotlabs/Module/Invite.php:353 +msgid "Not on xchan" +msgstr "No en xchan" + +#: ../../Zotlabs/Module/Invite.php:386 +msgid "All users invitation limit exceeded." +msgstr "Se ha superado el límite de invitaciones a todos los usuarios." + +#: ../../Zotlabs/Module/Invite.php:404 +msgid "Invitation expires after" +msgstr "La invitación expira después de " + +#: ../../Zotlabs/Module/Invite.php:504 ../../Zotlabs/Module/Invite.php:543 +msgid "Invitation" +msgstr "Invitación" + +#: ../../Zotlabs/Module/Invite.php:534 msgid "Send invitations" msgstr "Enviar invitaciones" -#: ../../Zotlabs/Module/Invite.php:156 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" - -#: ../../Zotlabs/Module/Invite.php:158 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." +#: ../../Zotlabs/Module/Invite.php:535 +msgid "Invitations I am using" +msgstr "Invitaciones que estoy utilizando " -#: ../../Zotlabs/Module/Invite.php:160 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" +#: ../../Zotlabs/Module/Invite.php:536 +msgid "Invitations we are using" +msgstr "Invitaciones que usamos " -#: ../../Zotlabs/Module/Invite.php:161 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" +#: ../../Zotlabs/Module/Invite.php:537 +msgid "§ Note, the email(s) sent will be recorded in the system logs" +msgstr "§ Nota: el/los correo(s) electrónicos enviados quedarán registrados en los registros del sistema" -#: ../../Zotlabs/Module/Invite.php:163 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." +#: ../../Zotlabs/Module/Invite.php:538 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" -#: ../../Zotlabs/Module/Invite.php:164 -msgid "or visit" -msgstr "o visitar" +#: ../../Zotlabs/Module/Invite.php:540 +msgid "Invite template" +msgstr "Plantilla de invitación" -#: ../../Zotlabs/Module/Invite.php:166 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" +#: ../../Zotlabs/Module/Invite.php:548 +msgid "Here you may enter personal notes to the recipient(s)" +msgstr "Aquí puede introducir notas personales para el/los destinatario(s)" #: ../../Zotlabs/Module/Notes.php:57 msgid "Notes App" @@ -13126,10 +13500,6 @@ msgstr "Publicar su perfil principal en el directorio de la red" 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:420 -msgid "or" -msgstr "o" - #: ../../Zotlabs/Module/Settings/Channel.php:429 msgid "Your channel address is" msgstr "Su dirección de canal es" @@ -13157,7 +13527,6 @@ msgid "Basic Settings" msgstr "Configuración básica" #: ../../Zotlabs/Module/Settings/Channel.php:502 -#: ../../Zotlabs/Module/Settings/Account.php:104 msgid "Email Address:" msgstr "Dirección de correo electrónico:" @@ -13476,59 +13845,63 @@ msgstr "Carpeta por defecto de los ficheros subidos" msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings/Account.php:19 +#: ../../Zotlabs/Module/Settings/Account.php:21 msgid "Not valid email." msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Settings/Account.php:22 +#: ../../Zotlabs/Module/Settings/Account.php:24 msgid "Protected email address. Cannot change to that email." msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../Zotlabs/Module/Settings/Account.php:31 +#: ../../Zotlabs/Module/Settings/Account.php:33 msgid "System failure storing new email. Please try again." msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../Zotlabs/Module/Settings/Account.php:48 +#: ../../Zotlabs/Module/Settings/Account.php:51 msgid "Password verification failed." msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Settings/Account.php:55 +#: ../../Zotlabs/Module/Settings/Account.php:58 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings/Account.php:59 +#: ../../Zotlabs/Module/Settings/Account.php:62 msgid "Empty passwords are not allowed. Password unchanged." msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings/Account.php:73 +#: ../../Zotlabs/Module/Settings/Account.php:76 msgid "Password changed." msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Settings/Account.php:75 +#: ../../Zotlabs/Module/Settings/Account.php:78 msgid "Password update failed. Please try again." msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../Zotlabs/Module/Settings/Account.php:99 +#: ../../Zotlabs/Module/Settings/Account.php:103 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Settings/Account.php:100 +#: ../../Zotlabs/Module/Settings/Account.php:104 msgid "Current Password" msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Settings/Account.php:101 +#: ../../Zotlabs/Module/Settings/Account.php:105 msgid "Enter New Password" msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Settings/Account.php:102 +#: ../../Zotlabs/Module/Settings/Account.php:106 msgid "Confirm New Password" msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Settings/Account.php:102 +#: ../../Zotlabs/Module/Settings/Account.php:106 msgid "Leave password fields blank unless changing" msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Settings/Account.php:106 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "DId2 or Email Address:" +msgstr "Did2 o dirección de correo electrónico: " + +#: ../../Zotlabs/Module/Settings/Account.php:110 msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" @@ -14040,135 +14413,135 @@ msgstr "App Wiki" msgid "Provide a wiki for your channel" msgstr "Proporcionar un wiki para su canal" -#: ../../Zotlabs/Module/Wiki.php:133 +#: ../../Zotlabs/Module/Wiki.php:132 msgid "Error retrieving wiki" msgstr "Error al recuperar el wiki" -#: ../../Zotlabs/Module/Wiki.php:140 +#: ../../Zotlabs/Module/Wiki.php:139 msgid "Error creating zip file export folder" msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar" -#: ../../Zotlabs/Module/Wiki.php:191 +#: ../../Zotlabs/Module/Wiki.php:190 msgid "Error downloading wiki: " msgstr "Error al descargar el wiki: " -#: ../../Zotlabs/Module/Wiki.php:212 ../../Zotlabs/Storage/Browser.php:404 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Storage/Browser.php:404 msgid "Download" msgstr "Descargar" -#: ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:215 msgid "Wiki name" msgstr "Nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Module/Wiki.php:216 msgid "Content type" msgstr "Tipo de contenido" -#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:378 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Storage/Browser.php:378 msgid "Type" msgstr "Tipo" -#: ../../Zotlabs/Module/Wiki.php:220 +#: ../../Zotlabs/Module/Wiki.php:219 msgid "Any type" msgstr "Cualquier tipo" -#: ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Wiki.php:226 msgid "Lock content type" msgstr "Tipo de contenido bloqueado" -#: ../../Zotlabs/Module/Wiki.php:228 +#: ../../Zotlabs/Module/Wiki.php:227 msgid "Create a status post for this wiki" msgstr "Crear un mensaje de estado para este wiki" -#: ../../Zotlabs/Module/Wiki.php:229 +#: ../../Zotlabs/Module/Wiki.php:228 msgid "Edit Wiki Name" msgstr "Editar el nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:274 +#: ../../Zotlabs/Module/Wiki.php:273 msgid "Wiki not found" msgstr "Wiki no encontrado" -#: ../../Zotlabs/Module/Wiki.php:300 +#: ../../Zotlabs/Module/Wiki.php:299 msgid "Rename page" msgstr "Renombrar la página" -#: ../../Zotlabs/Module/Wiki.php:321 +#: ../../Zotlabs/Module/Wiki.php:320 msgid "Error retrieving page content" msgstr "Error al recuperar el contenido de la página" -#: ../../Zotlabs/Module/Wiki.php:329 ../../Zotlabs/Module/Wiki.php:331 +#: ../../Zotlabs/Module/Wiki.php:328 ../../Zotlabs/Module/Wiki.php:330 msgid "New page" msgstr "Nueva página" -#: ../../Zotlabs/Module/Wiki.php:366 +#: ../../Zotlabs/Module/Wiki.php:365 msgid "Revision Comparison" msgstr "Comparación de revisiones" -#: ../../Zotlabs/Module/Wiki.php:374 +#: ../../Zotlabs/Module/Wiki.php:373 msgid "Short description of your changes (optional)" msgstr "Breve descripción de sus cambios (opcional)" -#: ../../Zotlabs/Module/Wiki.php:394 +#: ../../Zotlabs/Module/Wiki.php:393 msgid "New page name" msgstr "Nombre de la nueva página" -#: ../../Zotlabs/Module/Wiki.php:399 +#: ../../Zotlabs/Module/Wiki.php:398 msgid "Embed image from photo albums" msgstr "Incluir una imagen de los álbumes de fotos" -#: ../../Zotlabs/Module/Wiki.php:410 +#: ../../Zotlabs/Module/Wiki.php:409 msgid "History" msgstr "Historial" -#: ../../Zotlabs/Module/Wiki.php:488 +#: ../../Zotlabs/Module/Wiki.php:487 msgid "Error creating wiki. Invalid name." msgstr "Error al crear el wiki: el nombre no es válido." -#: ../../Zotlabs/Module/Wiki.php:495 +#: ../../Zotlabs/Module/Wiki.php:494 msgid "A wiki with this name already exists." msgstr "Ya hay un wiki con este nombre." -#: ../../Zotlabs/Module/Wiki.php:508 +#: ../../Zotlabs/Module/Wiki.php:507 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:515 +#: ../../Zotlabs/Module/Wiki.php:514 msgid "Error creating wiki" msgstr "Error al crear el wiki" -#: ../../Zotlabs/Module/Wiki.php:539 +#: ../../Zotlabs/Module/Wiki.php:538 msgid "Error updating wiki. Invalid name." msgstr "Error al actualizar el wiki. Nombre no válido." -#: ../../Zotlabs/Module/Wiki.php:559 +#: ../../Zotlabs/Module/Wiki.php:557 msgid "Error updating wiki" msgstr "Error al actualizar el wiki" -#: ../../Zotlabs/Module/Wiki.php:574 +#: ../../Zotlabs/Module/Wiki.php:572 msgid "Wiki delete permission denied." msgstr "Se ha denegado el permiso para eliminar el wiki." -#: ../../Zotlabs/Module/Wiki.php:584 +#: ../../Zotlabs/Module/Wiki.php:582 msgid "Error deleting wiki" msgstr "Se ha producido un error al eliminar el wiki" -#: ../../Zotlabs/Module/Wiki.php:617 +#: ../../Zotlabs/Module/Wiki.php:615 msgid "New page created" msgstr "Se ha creado la nueva página" -#: ../../Zotlabs/Module/Wiki.php:739 +#: ../../Zotlabs/Module/Wiki.php:741 msgid "Cannot delete Home" msgstr "No se puede eliminar la página principal" -#: ../../Zotlabs/Module/Wiki.php:803 +#: ../../Zotlabs/Module/Wiki.php:817 msgid "Current Revision" msgstr "Revisión actual" -#: ../../Zotlabs/Module/Wiki.php:803 +#: ../../Zotlabs/Module/Wiki.php:817 msgid "Selected Revision" msgstr "Revisión seleccionada" -#: ../../Zotlabs/Module/Wiki.php:853 +#: ../../Zotlabs/Module/Wiki.php:872 msgid "You must be authenticated." msgstr "Debe estar autenticado." @@ -14446,17 +14819,17 @@ msgstr "Última actualización:" msgid "Details" msgstr "Detalles" -#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Notifications.php:58 #: ../../Zotlabs/Module/Notify.php:61 msgid "No more system notifications." msgstr "No hay más notificaciones del sistema" -#: ../../Zotlabs/Module/Notifications.php:59 +#: ../../Zotlabs/Module/Notifications.php:62 #: ../../Zotlabs/Module/Notify.php:65 msgid "System Notifications" msgstr "Notificaciones del sistema" -#: ../../Zotlabs/Module/Notifications.php:60 +#: ../../Zotlabs/Module/Notifications.php:63 #: ../../Zotlabs/Lib/ThreadItem.php:484 msgid "Mark all seen" msgstr "Marcar todo como visto" @@ -14674,32 +15047,32 @@ msgctxt "permcat" msgid "publisher" msgstr "editor" -#: ../../Zotlabs/Lib/Activity.php:2131 +#: ../../Zotlabs/Lib/Activity.php:2163 #, php-format msgid "Likes %1$s's %2$s" msgstr "Gusta de %2$sde %1$s" -#: ../../Zotlabs/Lib/Activity.php:2134 +#: ../../Zotlabs/Lib/Activity.php:2166 #, php-format msgid "Doesn't like %1$s's %2$s" msgstr "No le gusta %2$sde %1$s" -#: ../../Zotlabs/Lib/Activity.php:2140 +#: ../../Zotlabs/Lib/Activity.php:2172 #, php-format msgid "Will attend %s's event" msgstr "Asistirá al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2143 +#: ../../Zotlabs/Lib/Activity.php:2175 #, php-format msgid "Will not attend %s's event" msgstr "No asistirá al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2146 +#: ../../Zotlabs/Lib/Activity.php:2178 #, php-format msgid "May attend %s's event" msgstr "Puede asistir al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2149 +#: ../../Zotlabs/Lib/Activity.php:2181 #, php-format msgid "May not attend %s's event" msgstr "Puede no asistir al evento de %s" @@ -14984,6 +15357,10 @@ msgstr "ha editado un comentario %s" msgid "created an event" msgstr "se creó un evento" +#: ../../Zotlabs/Lib/Enotify.php:986 +msgid "verified" +msgstr "verificado" + #: ../../Zotlabs/Lib/Connect.php:271 msgid "error saving data" msgstr "error guardando los datos" @@ -15008,11 +15385,11 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/NativeWiki.php:145 +#: ../../Zotlabs/Lib/NativeWiki.php:146 msgid "Wiki updated successfully" msgstr "El wiki se ha actualizado con éxito" -#: ../../Zotlabs/Lib/NativeWiki.php:199 +#: ../../Zotlabs/Lib/NativeWiki.php:206 msgid "Wiki files deleted successfully" msgstr "Se han borrado con éxito los ficheros del wiki" @@ -15165,51 +15542,51 @@ msgstr "(Sin título)" msgid "Wiki page create failed." msgstr "Se ha producido un error en la creación de la página wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:122 +#: ../../Zotlabs/Lib/NativeWikiPage.php:123 msgid "Wiki not found." msgstr "No se ha encontrado el wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:133 +#: ../../Zotlabs/Lib/NativeWikiPage.php:134 msgid "Destination name already exists" msgstr "El nombre de destino ya existe" -#: ../../Zotlabs/Lib/NativeWikiPage.php:166 -#: ../../Zotlabs/Lib/NativeWikiPage.php:361 +#: ../../Zotlabs/Lib/NativeWikiPage.php:167 +#: ../../Zotlabs/Lib/NativeWikiPage.php:368 msgid "Page not found" msgstr "No se ha encontrado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:197 +#: ../../Zotlabs/Lib/NativeWikiPage.php:200 msgid "Error reading page content" msgstr "Se ha producido un error al leer el contenido de la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:352 -#: ../../Zotlabs/Lib/NativeWikiPage.php:401 -#: ../../Zotlabs/Lib/NativeWikiPage.php:468 -#: ../../Zotlabs/Lib/NativeWikiPage.php:509 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +#: ../../Zotlabs/Lib/NativeWikiPage.php:409 +#: ../../Zotlabs/Lib/NativeWikiPage.php:480 +#: ../../Zotlabs/Lib/NativeWikiPage.php:522 msgid "Error reading wiki" msgstr "Se ha producido un error al leer el wiki" -#: ../../Zotlabs/Lib/NativeWikiPage.php:389 +#: ../../Zotlabs/Lib/NativeWikiPage.php:396 msgid "Page update failed." msgstr "Se ha producido un error al actualizar la página." -#: ../../Zotlabs/Lib/NativeWikiPage.php:423 +#: ../../Zotlabs/Lib/NativeWikiPage.php:431 msgid "Nothing deleted" msgstr "No se ha eliminado nada" -#: ../../Zotlabs/Lib/NativeWikiPage.php:489 +#: ../../Zotlabs/Lib/NativeWikiPage.php:501 msgid "Compare: object not found." msgstr "No se ha encontrado un objeto para comparar." -#: ../../Zotlabs/Lib/NativeWikiPage.php:495 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 msgid "Page updated" msgstr "Se ha actualizado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:498 +#: ../../Zotlabs/Lib/NativeWikiPage.php:511 msgid "Untitled" msgstr "Sin título" -#: ../../Zotlabs/Lib/NativeWikiPage.php:504 +#: ../../Zotlabs/Lib/NativeWikiPage.php:517 msgid "Wiki resource_id required for git commit" msgstr "Se necesita Wiki resource_id para el git commit" @@ -15608,40 +15985,40 @@ msgid "" "an existing folder." msgstr "Puede seleccionar los archivos a través del botón de subir o soltarlos aquí mismo o en una carpeta existente." -#: ../../boot.php:1690 +#: ../../boot.php:1695 msgid "Create an account to access services and applications" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" -#: ../../boot.php:1714 +#: ../../boot.php:1719 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1715 +#: ../../boot.php:1720 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1716 +#: ../../boot.php:1721 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1719 +#: ../../boot.php:1724 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2588 +#: ../../boot.php:2603 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Error SSL del sitio web en %s" -#: ../../boot.php:2593 +#: ../../boot.php:2608 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:2709 +#: ../../boot.php:2724 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" -#: ../../boot.php:2714 +#: ../../boot.php:2729 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index c41cf9fe9..d61cb65c2 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -2,7 +2,7 @@ if(! function_exists("string_plural_select_es_es")) { function string_plural_select_es_es($n){ - return ($n != 1 ? 1 : 0); + return ($n != 1); }} App::$rtl = 0; App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)"; @@ -611,6 +611,7 @@ App::$strings["Diaspora Protocol Settings updated."] = "Los ajustes del protocol App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "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."; App::$strings["Diaspora Protocol App"] = "App Protocolo Diaspora"; App::$strings["Allow any Diaspora member to comment or like your public posts"] = "Permitir que cualquier miembro de Diaspora comente o ponga un like en sus entradas públicas"; +App::$strings["If this setting is disabled only your contacts will be able to comment or like your public posts"] = "Si esta configuración está desactivada, sólo sus contactos podrán comentar o dar a \"me gusta\" en sus publicaciones públicas"; App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "; App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Firmar y enviar entradas y comentarios sin firma de Diaspora"; App::$strings["Followed hashtags (comma separated, do not include the #)"] = "\"Hashtags\" seguidos (separados por comas, sin incluir #)"; @@ -1129,6 +1130,7 @@ App::$strings["__ctx:calendar__ week"] = "semana"; App::$strings["__ctx:calendar__ day"] = "día"; App::$strings["__ctx:calendar__ All day"] = "Todos los días"; App::$strings["Please stand by while your download is being prepared."] = "Por favor, espere mientras se prepara la descarga."; +App::$strings["Email address not valid"] = "Dirección de correo electrónica no válida"; App::$strings["Help:"] = "Ayuda:"; App::$strings["Help"] = "Ayuda"; App::$strings["Not Found"] = "No encontrado"; @@ -1487,9 +1489,9 @@ App::$strings["profile photo"] = "foto del perfil"; App::$strings["[Edited %s]"] = "[se ha editado %s]"; App::$strings["__ctx:edit_activity__ Post"] = "Publicar"; App::$strings["__ctx:edit_activity__ Comment"] = "Comentar"; -App::$strings["Not a valid email address"] = "Dirección de correo no válida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; -App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +App::$strings["The provided email address is not valid"] = "La dirección de correo electrónico proporcionada no es válida"; +App::$strings["The provided email domain is not among those allowed on this site"] = "El dominio de correo electrónico proporcionado no está entre los permitidos en este sitio"; +App::$strings["The provided email address is already registered at this site"] = "La dirección de correo electrónico proporcionada ya está registrada en este sitio"; App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; @@ -1500,9 +1502,14 @@ App::$strings["your registration password"] = "su contraseña de registro"; App::$strings["Registration details for %s"] = "Detalles del registro de %s"; App::$strings["Account approved."] = "Cuenta aprobada."; App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; +App::$strings["Could not revoke registration for %s"] = "No se ha podido revocar el registro de %s"; App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +App::$strings["open"] = "abierto"; +App::$strings["closed"] = "cerrado"; +App::$strings["Registration is currently"] = "El registro está actualmente "; +App::$strings["please come back"] = "por favor, vuelva"; App::$strings["Profile Photos"] = "Fotos del perfil"; App::$strings["Item was not found."] = "Elemento no encontrado."; App::$strings["Unknown error."] = "Error desconocido"; @@ -1863,36 +1870,40 @@ App::$strings["Update to Hubzilla 5.0 step 2"] = "Actualizar a Hubzilla 5.0. Pas App::$strings["To complete the update please run"] = "Para completar la actualización, ejecutar "; App::$strings["php util/z6convert.php"] = "php util/z6convert.php"; App::$strings["from the terminal."] = "desde la terminal."; -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."; -App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; -App::$strings["Registration successful. Continue to create your first channel..."] = "Registro exitoso. Continúe creando tu primer canal..."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; -App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; -App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; +App::$strings["Email address required"] = "Dirección de correo electrónico requerida"; +App::$strings["No password provided"] = "No se ha proporcionado la contraseña"; +App::$strings["Terms of Service not accepted"] = "No se han aceptado los Términos del servicio"; +App::$strings["Invitation code succesfully applied"] = "El código de invitación se ha aplicado con éxito"; +App::$strings["Invitation not in time or too late"] = "La invitación no llega a tiempo o llega demasiado tarde"; +App::$strings["Invitation email failed"] = "Error en el correo electrónico de invitación"; +App::$strings["Invitation code failed"] = "Código de invitación fallido"; +App::$strings["Invitations are not available"] = "No hay invitaciones disponibles"; +App::$strings["Email address already in use"] = "La dirección de correo electrónico ya está en uso"; +App::$strings["Registration on this hub is by invitation only"] = "El registro en este hub solo es posible por invitación"; +App::$strings["New register request"] = "Nueva solicitud de registro"; +App::$strings["Error creating dId A"] = "Error al crear dId A"; App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; App::$strings["Registration on this hub is by approval only."] = "El registro en este hub está sometido a aprobación previa."; -App::$strings["Register at another affiliated hub."] = "Registrarse en otro hub afiliado."; +App::$strings["Register at another affiliated hub in case when prefered"] = "Regístrese en otro hub afiliado en caso de que lo prefiera"; App::$strings["Registration on this hub is by invitation only."] = "La inscripción en este hub es sólo posible por invitación."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; +App::$strings["Register at another affiliated hub"] = "Regístrese en otro hub afiliado"; App::$strings["Terms of Service"] = "Términos del servicio"; App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; App::$strings["I am over %s years of age and accept the %s for this website"] = "Tengo más de %s años de edad y acepto los %s de este sitio web"; App::$strings["Your email address"] = "Su dirección de correo electrónico"; +App::$strings["Optional"] = "Opcional"; App::$strings["Choose a password"] = "Elija una contraseña"; App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; -App::$strings["Your Name"] = "Su nombre"; -App::$strings["Real names are preferred."] = "Se prefieren los nombres reales"; +App::$strings["Your name"] = "Su nombre"; +App::$strings["Real name is preferred"] = "Se prefiere el nombre real"; App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; -App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad."; -App::$strings["Read more about channel permission roles"] = "Leer más sobre los roles y permisos"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sí"; +App::$strings["Your nickname will be used to create an easy to remember channel address"] = "Tu alias se utilizará para crear una dirección de canal fácil de recordar"; +App::$strings["Why do you want to join this hub?"] = "¿Por qué quiere unirse a este hub?"; +App::$strings["This will help to review your registration"] = "Esto ayudará a revisar su registro"; App::$strings["Registration"] = "Registro"; -App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones."; +App::$strings["I have an invite code"] = "Tengo un código de invitación"; +App::$strings["This site has exceeded the number of allowed daily account registrations."] = "Este sitio ha superado el número permitido de registros diarios de cuentas."; App::$strings["Public access denied."] = "Acceso público denegado."; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; @@ -2050,7 +2061,6 @@ App::$strings["Automatically generated - change if desired. Max length 20"] = "G App::$strings["Redirect"] = "Redirigir"; App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; App::$strings["Icon url"] = "Dirección del icono"; -App::$strings["Optional"] = "Opcional"; App::$strings["Application not found."] = "Aplicación no encontrada."; App::$strings["Connected OAuth Apps"] = "Apps OAuth conectadas"; App::$strings["Client key starts with"] = "La \"client key\" empieza por"; @@ -2238,7 +2248,6 @@ App::$strings["By continuing, I certify that I have complied with any instructio App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; App::$strings["Not found"] = "No encontrado"; -App::$strings["Please refresh page"] = "Por favor, recargue la página"; App::$strings["Unknown error"] = "Error desconocido"; App::$strings["🔁 Repeated %1\$s's %2\$s"] = "🔁 Repetidos %2\$sde %1\$s"; App::$strings["Post repeated"] = "Entrada repetida"; @@ -2310,20 +2319,33 @@ App::$strings["%s account deleted"] = array( App::$strings["Account not found"] = "Cuenta no encontrada"; App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; -App::$strings["select all"] = "seleccionar todo"; -App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; +App::$strings["Unverified"] = "Sin verificar"; +App::$strings["Expired"] = "Caducado/a"; +App::$strings["Show verified registrations"] = "Mostrar registros verificados"; +App::$strings["Show all registrations"] = "Mostrar todos los registros"; +App::$strings["Select toggle"] = "Seleccionar alternar"; +App::$strings["Deny selected"] = "Denegar seleccionado"; +App::$strings["Approve selected"] = "Aprobar seleccionado"; +App::$strings["All registrations"] = "Todos los registros"; +App::$strings["Verified registrations waiting for approval"] = "Registros verificados en espera de aprobación"; App::$strings["Request date"] = "Fecha de solicitud"; -App::$strings["No registrations."] = "Sin registros."; +App::$strings["Requests"] = "Solicitudes"; +App::$strings["No registrations available"] = "No hay registros disponibles"; +App::$strings["No verified registrations available"] = "No hay registros verificados disponibles"; App::$strings["Block"] = "Bloquear"; App::$strings["Unblock"] = "Desbloquear"; +App::$strings["Verified"] = "Verificado/a"; +App::$strings["Not yet verified"] = "Aún no se ha verificado"; App::$strings["ID"] = "ID"; -App::$strings["All Channels"] = "Todos los canales"; +App::$strings["All channels"] = "Todos los canales"; App::$strings["Register date"] = "Fecha de registro"; App::$strings["Last login"] = "Último acceso"; App::$strings["Expires"] = "Caduca"; -App::$strings["Service Class"] = "Clase de servicio"; +App::$strings["Service class"] = "Clase de servicio"; App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["Invalid input"] = "Entrada no válida"; +App::$strings["Errors"] = "Errores"; App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; App::$strings["mobile"] = "móvil"; @@ -2336,6 +2358,17 @@ App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuit App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; App::$strings["Default permission role for new accounts"] = "Permisos de rol por defecto para las nuevas cuentas"; App::$strings["This role will be used for the first channel created after registration."] = "Este rol se utilizará para el primer canal creado después del registro."; +App::$strings["Minute(s)"] = "Minuto(s)"; +App::$strings["Hour(s)"] = "Hora(s)"; +App::$strings["Day(s)"] = "Día(s)"; +App::$strings["Week(s)"] = "Semana(s)"; +App::$strings["Month(s)"] = "Mes(Meses)"; +App::$strings["Year(s)"] = "Año(s)"; +App::$strings["Register verification delay"] = "Retraso en la verificación del registro"; +App::$strings["Time to wait before a registration can be verified"] = "Tiempo de espera para verificar un registro "; +App::$strings["duration up from now"] = "duración a partir de ahora "; +App::$strings["Register verification expiration time"] = "Tiempo de caducidad de la verificación del registro "; +App::$strings["Time before an unverified registration will expire"] = "Tiempo antes de que caduque un registro no verificado "; App::$strings["File upload"] = "Subir fichero"; App::$strings["Policies"] = "Políticas"; App::$strings["Banner/Logo"] = "Banner/Logo"; @@ -2351,25 +2384,39 @@ App::$strings["Allow Feeds as Connections"] = "Permitir contenidos RSS como cone App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; App::$strings["Maximum image size"] = "Tamaño máximo de la imagen"; App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; -App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; -App::$strings["Invitation only"] = "Solo con una invitación"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "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í\"."; App::$strings["Minimum age"] = "Edad mínima"; App::$strings["Minimum age (in years) for who may register on this site."] = "Edad mínima (en años) para poder registrarse en este sitio."; App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; App::$strings["This is displayed on the public server site list."] = "Esto se muestra en la lista de sitios de servidores públicos."; App::$strings["Register text"] = "Texto del registro"; -App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; +App::$strings["This text will be displayed prominently at the registration page"] = "Este texto se mostrará de forma destacada en la página de registro "; +App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; +App::$strings["Configure the registration open days/hours"] = "Configurar los días/horas de apertura del registro"; +App::$strings["Empty or '-:-' value will keep registration open 24/7 (default)"] = "El valor vacío o \"-:-\" mantendrá el registro abierto 24/7 (por defecto)"; +App::$strings["Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` example: 1:800-1200"] = "Los días de la semana y las horas deben separarse con dos puntos ':', los rangos Desde-Hasta con un guión `-` ejemplo: 1:800-1200"; +App::$strings["Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700"] = "Los pares día de la semana:hora deben estar separados por un espacio ' ' ejemplo: 1:900-1700 2:900-1700"; +App::$strings["From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or 1-2,4-5:900-1700"] = "Los rangos desde-hasta deben estar separados por comas ',' ejemplo: 1:800-1200,1300-1700 o 1-2,4-5:900-1700"; +App::$strings["Advanced examples:"] = "Ejemplos avanzados: "; +App::$strings["or"] = "o"; +App::$strings["Check your configuration"] = "Compruebe su configuración"; +App::$strings["Max account registrations per day"] = "Máximo de registros de cuentas por día "; +App::$strings["Unlimited if zero or no value - default 50"] = "Ilimitado si es cero o sin valor - por defecto 50"; +App::$strings["Max account registrations from same IP"] = "Máximo de registros de cuentas desde la misma IP"; +App::$strings["Unlimited if zero or no value - default 3"] = "Ilimitado si es cero o sin valor - por defecto 3"; +App::$strings["Auto channel create"] = "Creación automática de canales"; +App::$strings["If disabled the channel will be created in a separate step during the registration process"] = "Si se desactiva, el canal se creará en un paso separado durante el proceso de registro"; +App::$strings["Require invite code"] = "Solicitar código de invitación"; +App::$strings["Allow invite code"] = "Permitir código de invitación"; +App::$strings["Require email address"] = "Solicitar dirección de correo electrónico"; +App::$strings["The provided email address will be verified (recommended)"] = "La dirección de correo electrónico proporcionada será verificada (recomendado)"; +App::$strings["Abandon account after x days"] = "Abandonar la cuenta después de x días"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "ejemplo: 'pubstream' para mostrar el stream público, 'page/sys/home' para mostrar una página web del sistema llamada 'home' o 'include:home.html' para incluir un archivo."; App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; -App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; App::$strings["Allowed friend domains"] = "Dominios amigos permitidos"; App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "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."; -App::$strings["Verify Email Addresses"] = "Verificar las direcciones de correo electrónico"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; App::$strings["Force publish"] = "Forzar la publicación"; App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; App::$strings["Import Public Streams"] = "Importar contenido público"; @@ -2417,6 +2464,7 @@ App::$strings["Page to display after creating a new channel"] = "Página a mostr App::$strings["Default: profiles"] = "Perfiles predeterminados"; App::$strings["Optional: site location"] = "Opcional: ubicación del sitio"; App::$strings["Region or country"] = "Región o país"; +App::$strings["Invalid 24h time value (hhmm/hmm)"] = "Valor de tiempo de 24h no válido (hhmm/hmm)"; App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; App::$strings["Clear"] = "Vaciar"; App::$strings["Debugging"] = "Depuración"; @@ -2441,6 +2489,7 @@ App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; +App::$strings["select all"] = "seleccionar todo"; App::$strings["Censor"] = "Censurar"; App::$strings["Uncensor"] = "No censurar"; App::$strings["Allow Code"] = "Permitir código"; @@ -2455,7 +2504,6 @@ App::$strings["Account Edit"] = "Editar la cuenta"; App::$strings["New Password"] = "Nueva contraseña"; App::$strings["New Password again"] = "Nueva contraseña otra vez"; App::$strings["Account language (for emails)"] = "Idioma de la cuenta (para los correos electrónicos)"; -App::$strings["Service class"] = "Clase de servicio"; App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; App::$strings["Field nickname"] = "Alias del campo"; App::$strings["System name of field"] = "Nombre del campo en el sistema"; @@ -2515,6 +2563,36 @@ App::$strings["This channel will be completely removed from the network. "] = "E App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; App::$strings["Remove Channel"] = "Eliminar el canal"; +App::$strings["Email resent"] = "Correo electrónico reenviado"; +App::$strings["Email resend failed"] = "Fallo en el reenvío del correo electrónico"; +App::$strings["Verify successfull"] = "Verificar que se ha hecho bien"; +App::$strings["Account successfull created"] = "Cuenta creada con éxito"; +App::$strings["Channel successfull created"] = "Canal creado con éxito"; +App::$strings["Automatic channel creation failed. Please create a channel."] = "La creación automática de canales ha fallado. Por favor, cree un canal."; +App::$strings["Account creation error"] = "Error en la creación de la cuenta"; +App::$strings["Verify failed"] = "Verificación fallida"; +App::$strings["Token verification failed"] = "Ha fallado el token de verificación."; +App::$strings["Request not inside time frame"] = "Solicitud fuera de plazo"; +App::$strings["Identity unknown"] = "Identidad desconocida"; +App::$strings["dId2 mistaken"] = "did2 equivocado/a"; +App::$strings["Your Registration ID"] = "Su ID de registro"; +App::$strings["Registration verification"] = "Verificación del registro"; +App::$strings["Hold on, you can start verification in"] = "Espere, puede empezar la verificación en "; +App::$strings["Please remember your verification token for ID"] = "Por favor, recuerde su token de verificación para la identificación"; +App::$strings["Token validity"] = "Validez del token"; +App::$strings["Resend"] = "Reenviar"; +App::$strings["Registration status"] = "Estado del registro"; +App::$strings["Verification successful!"] = "¡Verificación exitosa!"; +App::$strings["Your login ID is"] = "Su ID de acceso es"; +App::$strings["After your account has been approved by our administrator you will be able to login with your login ID and your provided password."] = "Una vez que su cuenta haya sido aprobada por nuestro administrador, podrá iniciar sesión con su ID de acceso y la contraseña proporcionada."; +App::$strings["Registration request revoked"] = "Solicitud de registro anulada"; +App::$strings["Sorry for any inconvience. Thank you for your response."] = "Disculpe las molestias. Gracias por su respuesta."; +App::$strings["Please enter your verification token for ID"] = "Por favor, introduzca su token de verificación para la identificación"; +App::$strings["Verification token"] = "Token de verificación "; +App::$strings["ID expired"] = "ID caducada"; +App::$strings["You will require the verification token for ID"] = "Necesitará el token de verificación para identificarse"; +App::$strings["Unknown or expired ID"] = "ID desconocida o caducada"; +App::$strings["dId2 malformed"] = "did2 malformado/a"; App::$strings["Edit event title"] = "Editar el título del evento"; App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; App::$strings["Edit Category"] = "Modificar el tema"; @@ -2599,7 +2677,9 @@ App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \ App::$strings["This will be used to create a unique network address (like an email address)."] = "Esto se utilizará para crear una dirección de red única (como una dirección de correo electrónico)."; App::$strings["Allowed characters are a-z 0-9, - and _"] = "Los caracteres permitidos son a-z 0-9, - and _"; App::$strings["Channel name"] = "Nombre del canal"; +App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad."; +App::$strings["Read more about channel permission roles"] = "Leer más sobre los roles y permisos"; App::$strings["Create a Channel"] = "Crear un canal"; App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas."; App::$strings["or import an existing channel from another location."] = "O importar un canal desde otro lugar."; @@ -2852,7 +2932,7 @@ App::$strings["Sexual preference"] = "Preferencia sexual"; App::$strings["Profile name"] = "Nombre del perfil"; App::$strings["This is your default profile."] = "Este es su perfil principal."; App::$strings["Your full name"] = "Nombre completo"; -App::$strings["Short title/tescription"] = "Breve título y descripción"; +App::$strings["Short title/description"] = "Breve título y descripción"; App::$strings["Maximal 190 characters"] = "Máximo de 190 caracteres"; App::$strings["Street address"] = "Dirección"; App::$strings["Locality/City"] = "Ciudad"; @@ -2894,25 +2974,33 @@ App::$strings["Change channel nickname/address"] = "Cambiar el alias o la direcc 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["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; -App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -App::$strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", -); App::$strings["Invite App"] = "Solicitar una app"; -App::$strings["Send email invitations to join this network"] = "Enviar invitaciones por correo electrónico para unirse a esta red"; +App::$strings["Register is closed"] = "El registro está cerrado"; +App::$strings["Note, the invitation code is valid up to"] = "Tenga en cuenta que el código de invitación es válido hasta "; +App::$strings["Too many recipients for one invitation (max %d)"] = "Demasiados destinatarios para una invitación (máx %d)"; +App::$strings["No recipients for this invitation"] = "No hay destinatarios para esta invitación"; +App::$strings["(%s) : Not a valid email address"] = "(%s): No es una dirección de correo electrónico válida"; +App::$strings["(%s) : Not a real email address"] = "(%s) : No es una dirección de correo electrónica real"; +App::$strings["(%s) : Not allowed email address"] = "(%s) : Dirección de correo electrónico no permitida"; +App::$strings["(%s) : email address already in use"] = "(%s) : La dirección de correo electrónico ya está en uso"; +App::$strings["(%s) : Accepted email address"] = "(%s) : Dirección de correo electrónico aceptada"; +App::$strings["To %s : Message delivery success."] = "To %s : Entrega exitosa del mensaje."; +App::$strings["%1\$d mail(s) sent, %2\$d mail error(s)"] = "%1\$d correo(s) enviado, %2\$d error(es) de correo"; +App::$strings["Invites not proposed by configuration"] = "Invitaciones no propuestas por la configuración"; +App::$strings["Contact the site admin"] = "Contactar con el administrador del sitio"; +App::$strings["Invites by users not enabled"] = "Invitaciones de usuarios no habilitadas"; App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +App::$strings["Not on xchan"] = "No en xchan"; +App::$strings["All users invitation limit exceeded."] = "Se ha superado el límite de invitaciones a todos los usuarios."; +App::$strings["Invitation expires after"] = "La invitación expira después de "; +App::$strings["Invitation"] = "Invitación"; App::$strings["Send invitations"] = "Enviar invitaciones"; +App::$strings["Invitations I am using"] = "Invitaciones que estoy utilizando "; +App::$strings["Invitations we are using"] = "Invitaciones que usamos "; +App::$strings["§ Note, the email(s) sent will be recorded in the system logs"] = "§ Nota: el/los correo(s) electrónicos enviados quedarán registrados en los registros del sistema"; App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; -App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; -App::$strings["or visit"] = "o visitar"; -App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; +App::$strings["Invite template"] = "Plantilla de invitación"; +App::$strings["Here you may enter personal notes to the recipient(s)"] = "Aquí puede introducir notas personales para el/los destinatario(s)"; App::$strings["Notes App"] = "App Notas"; App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "Una simple aplicación de notas con un widget (aviso: las notas no están encriptadas)"; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; @@ -2946,7 +3034,6 @@ App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; App::$strings["Anybody on the internet"] = "Cualquiera en internet"; App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; -App::$strings["or"] = "o"; App::$strings["Your channel address is"] = "Su dirección de canal es"; App::$strings["Your files/photos are accessible via WebDAV at"] = "Sus archivos y fotos son accesibles a través de WebDAV en "; App::$strings["Automatic membership approval"] = "Aprobación automática de nuevos miembros"; @@ -3042,6 +3129,7 @@ App::$strings["Current Password"] = "Contraseña actual"; App::$strings["Enter New Password"] = "Escribir una nueva contraseña"; App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; +App::$strings["DId2 or Email Address:"] = "Did2 o dirección de correo electrónico: "; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; App::$strings["Addon Settings"] = "Ajustes de los complementos"; @@ -3380,6 +3468,7 @@ App::$strings["repeated %s's post"] = "repetida la entrada de %s"; App::$strings["edited a post dated %s"] = "ha editado una entrada %s"; App::$strings["edited a comment dated %s"] = "ha editado un comentario %s"; App::$strings["created an event"] = "se creó un evento"; +App::$strings["verified"] = "verificado"; App::$strings["error saving data"] = "error guardando los datos"; App::$strings["Missing room name"] = "Sala de chat sin nombre"; App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; -- cgit v1.2.3 From 443b436be8637c5adc9088e591f9bd3e8b0327a2 Mon Sep 17 00:00:00 2001 From: mjfriaza Date: Tue, 1 Jun 2021 11:57:11 +0200 Subject: Update Spanish (cherry picked from commit 993d64801136aa4bde4f4422ae4f07d224a91a62) --- view/es-es/hmessages.po | 2709 +++++++++++++++++++++++++++-------------------- view/es-es/hstrings.php | 199 +++- 2 files changed, 1687 insertions(+), 1221 deletions(-) (limited to 'view') diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 8c730d058..a9d2fdd48 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the hubzilla package. # # Translators: -# Alfonso Martínez , 2015 +# Alfonso Martínez, 2015 # inboxwall , 2015 # jeroenpraat, 2015 # Manuel Jiménez Friaza , 2017-2021 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: hubzilla\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-23 10:52+0000\n" -"PO-Revision-Date: 2021-02-24 09:30+0000\n" +"POT-Creation-Date: 2021-04-29 08:26+0000\n" +"PO-Revision-Date: 2021-05-14 18:05+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/hubzilla/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -24,15 +24,12 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1 ? 1 : 0);\n" - - - #: ../../view/theme/redbasic/php/config.php:15 #: ../../addon/cart/submodules/orderoptions.php:335 #: ../../addon/cart/submodules/orderoptions.php:359 #: ../../addon/cart/submodules/orderoptions.php:435 #: ../../addon/cart/submodules/orderoptions.php:459 -#: ../../include/text.php:3382 ../../Zotlabs/Module/Admin/Site.php:191 +#: ../../include/text.php:3395 ../../Zotlabs/Module/Admin/Site.php:251 msgid "Default" msgstr "Predeterminado" @@ -90,8 +87,8 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Widget/Wiki_pages.php:99 #: ../../Zotlabs/Widget/Eventstools.php:16 ../../Zotlabs/Module/Tokens.php:188 #: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Import.php:646 ../../Zotlabs/Module/Setup.php:304 -#: ../../Zotlabs/Module/Setup.php:344 ../../Zotlabs/Module/Group.php:151 +#: ../../Zotlabs/Module/Import.php:647 ../../Zotlabs/Module/Setup.php:306 +#: ../../Zotlabs/Module/Setup.php:346 ../../Zotlabs/Module/Group.php:151 #: ../../Zotlabs/Module/Group.php:167 ../../Zotlabs/Module/Oauth.php:111 #: ../../Zotlabs/Module/Chat.php:209 ../../Zotlabs/Module/Chat.php:248 #: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Mitem.php:259 @@ -100,24 +97,25 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Security.php:120 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Accounts.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:412 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Account_edit.php:73 #: ../../Zotlabs/Module/Admin/Profs.php:178 #: ../../Zotlabs/Module/Admin/Addons.php:442 -#: ../../Zotlabs/Module/Events.php:501 ../../Zotlabs/Module/Permcats.php:129 -#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Appman.php:155 +#: ../../Zotlabs/Module/Regate.php:384 ../../Zotlabs/Module/Events.php:501 +#: ../../Zotlabs/Module/Permcats.php:129 ../../Zotlabs/Module/Mood.php:158 +#: ../../Zotlabs/Module/Appman.php:155 #: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 #: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Profiles.php:725 -#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Xchan.php:15 #: ../../Zotlabs/Module/Affinity.php:87 ../../Zotlabs/Module/Rate.php:168 #: ../../Zotlabs/Module/Settings/Network.php:62 #: ../../Zotlabs/Module/Settings/Features.php:48 #: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Account.php:103 +#: ../../Zotlabs/Module/Settings/Account.php:107 #: ../../Zotlabs/Module/Settings/Events.php:42 #: ../../Zotlabs/Module/Settings/Manage.php:43 #: ../../Zotlabs/Module/Settings/Channel_home.php:91 @@ -132,7 +130,7 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Module/Defperms.php:266 ../../Zotlabs/Module/Pconfig.php:116 #: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Thing.php:328 #: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Pdledit.php:108 -#: ../../Zotlabs/Module/Wiki.php:215 ../../Zotlabs/Module/Connedit.php:897 +#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Connedit.php:897 #: ../../Zotlabs/Module/Locs.php:132 ../../Zotlabs/Module/Sources.php:125 #: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Lib/ThreadItem.php:827 #: ../../Zotlabs/Storage/Browser.php:382 @@ -189,29 +187,29 @@ msgstr "Estrechar la barra de navegación" #: ../../addon/libertree/Mod_Libertree.php:59 #: ../../addon/socialauth/Mod_SocialAuth.php:214 #: ../../addon/ljpost/Mod_Ljpost.php:63 ../../addon/ljpost/Mod_Ljpost.php:67 -#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1469 +#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1468 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:635 -#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:636 +#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Register.php:536 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Filestorage.php:203 #: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:259 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Events.php:478 #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Api.php:99 #: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Settings/Channel.php:311 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 #: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Sources.php:124 #: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Lib/Libzotdir.php:165 #: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 #: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 #: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 #: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 -#: ../../boot.php:1716 +#: ../../boot.php:1721 msgid "No" msgstr "No" @@ -257,28 +255,28 @@ msgstr "No" #: ../../addon/libertree/Mod_Libertree.php:59 #: ../../addon/socialauth/Mod_SocialAuth.php:214 #: ../../addon/ljpost/Mod_Ljpost.php:63 ../../addon/ljpost/Mod_Ljpost.php:67 -#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1469 +#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1468 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:635 -#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:636 +#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Register.php:536 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Filestorage.php:203 #: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:261 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Admin/Site.php:321 ../../Zotlabs/Module/Events.php:478 #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Api.php:98 #: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Settings/Channel.php:311 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 #: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 #: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 #: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Storage/Browser.php:310 #: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 #: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 -#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1716 +#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1721 msgid "Yes" msgstr "Sí" @@ -433,7 +431,7 @@ msgid "Channel Reputation" msgstr "Reputación del canal" #: ../../addon/channelreputation/channelreputation.php:233 -#: ../../include/acl_selectors.php:155 ../../Zotlabs/Widget/Pinned.php:160 +#: ../../include/acl_selectors.php:156 ../../Zotlabs/Widget/Pinned.php:158 #: ../../Zotlabs/Module/Photos.php:1275 ../../Zotlabs/Lib/ThreadItem.php:497 #: ../../Zotlabs/Storage/Browser.php:411 msgid "Close" @@ -489,17 +487,17 @@ msgstr "App Superblock" #: ../../addon/xmpp/Mod_Xmpp.php:35 ../../Zotlabs/Module/Tokens.php:99 #: ../../Zotlabs/Module/Group.php:107 ../../Zotlabs/Module/Oauth.php:100 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Poke.php:165 -#: ../../Zotlabs/Module/Cdav.php:876 ../../Zotlabs/Module/Webpages.php:48 +#: ../../Zotlabs/Module/Cdav.php:877 ../../Zotlabs/Module/Webpages.php:48 #: ../../Zotlabs/Module/Pubstream.php:20 ../../Zotlabs/Module/Permcats.php:63 -#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Uexport.php:62 #: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Cards.php:51 #: ../../Zotlabs/Module/Articles.php:52 ../../Zotlabs/Module/Bookmarks.php:78 -#: ../../Zotlabs/Module/Probe.php:19 ../../Zotlabs/Module/Invite.php:110 -#: ../../Zotlabs/Module/Notes.php:57 ../../Zotlabs/Module/Affinity.php:52 -#: ../../Zotlabs/Module/Defperms.php:190 ../../Zotlabs/Module/Oauth2.php:106 -#: ../../Zotlabs/Module/Randprof.php:29 ../../Zotlabs/Module/Pdledit.php:43 -#: ../../Zotlabs/Module/Wiki.php:52 ../../Zotlabs/Module/Suggest.php:40 -#: ../../Zotlabs/Module/Sources.php:88 +#: ../../Zotlabs/Module/Probe.php:19 ../../Zotlabs/Module/Invite.php:56 +#: ../../Zotlabs/Module/Invite.php:310 ../../Zotlabs/Module/Notes.php:57 +#: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Defperms.php:190 +#: ../../Zotlabs/Module/Oauth2.php:106 ../../Zotlabs/Module/Randprof.php:29 +#: ../../Zotlabs/Module/Pdledit.php:43 ../../Zotlabs/Module/Wiki.php:52 +#: ../../Zotlabs/Module/Suggest.php:40 ../../Zotlabs/Module/Sources.php:88 msgid "Not Installed" msgstr "No instalado/a" @@ -593,7 +591,7 @@ msgid "View Profile" msgstr "Ver el perfil" #: ../../addon/openclipatar/openclipatar.php:58 ../../include/nav.php:120 -#: ../../include/channel.php:1543 +#: ../../include/channel.php:1567 msgid "Edit Profile" msgstr "Editar el perfil" @@ -711,8 +709,8 @@ msgstr "Mínimo 100, por defecto 100 microsegundos" msgid "Queueworker Settings" msgstr "Configuración del gestor de procesos de trabajo en cola" -#: ../../addon/queueworker/Mod_Queueworker.php:116 ../../include/text.php:1152 -#: ../../include/text.php:1164 ../../Zotlabs/Widget/Notes.php:23 +#: ../../addon/queueworker/Mod_Queueworker.php:116 ../../include/text.php:1145 +#: ../../include/text.php:1157 ../../Zotlabs/Widget/Notes.php:23 #: ../../Zotlabs/Module/Admin/Profs.php:94 #: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Cards.php:113 #: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Articles.php:117 @@ -767,7 +765,7 @@ msgstr "Galería" msgid "Photo Gallery" msgstr "Galería de fotos" -#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1440 +#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1464 #: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Editwebpage.php:32 #: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Webpages.php:39 #: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 @@ -798,7 +796,7 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../addon/openid/Mod_Id.php:53 ../../addon/mail/Mod_Mail.php:26 #: ../../addon/pumpio/pumpio.php:44 ../../addon/keepout/keepout.php:36 -#: ../../include/photos.php:27 ../../include/items.php:4001 +#: ../../include/photos.php:27 ../../include/items.php:4087 #: ../../include/attach.php:156 ../../include/attach.php:205 #: ../../include/attach.php:278 ../../include/attach.php:329 #: ../../include/attach.php:424 ../../include/attach.php:438 @@ -808,12 +806,12 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Attach_edit.php:90 #: ../../Zotlabs/Module/Attach_edit.php:99 #: ../../Zotlabs/Module/Attach_edit.php:106 -#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/Register.php:80 -#: ../../Zotlabs/Module/Setup.php:206 +#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/Register.php:197 +#: ../../Zotlabs/Module/Setup.php:208 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Channel.php:209 ../../Zotlabs/Module/Channel.php:364 -#: ../../Zotlabs/Module/Channel.php:403 ../../Zotlabs/Module/Group.php:15 +#: ../../Zotlabs/Module/Channel.php:209 ../../Zotlabs/Module/Channel.php:365 +#: ../../Zotlabs/Module/Channel.php:404 ../../Zotlabs/Module/Group.php:15 #: ../../Zotlabs/Module/Group.php:31 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 @@ -822,8 +820,8 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Chat.php:118 #: ../../Zotlabs/Module/Channel_calendar.php:232 #: ../../Zotlabs/Module/Like.php:242 ../../Zotlabs/Module/Poke.php:157 -#: ../../Zotlabs/Module/Item.php:496 ../../Zotlabs/Module/Item.php:515 -#: ../../Zotlabs/Module/Item.php:525 ../../Zotlabs/Module/Item.php:1436 +#: ../../Zotlabs/Module/Item.php:506 ../../Zotlabs/Module/Item.php:525 +#: ../../Zotlabs/Module/Item.php:535 ../../Zotlabs/Module/Item.php:1444 #: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Profile.php:99 #: ../../Zotlabs/Module/Profile.php:114 #: ../../Zotlabs/Module/Sharedwithme.php:19 @@ -837,7 +835,7 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Achievements.php:34 #: ../../Zotlabs/Module/Events.php:277 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Viewsrc.php:19 -#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Display.php:428 +#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Display.php:420 #: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/New_channel.php:105 #: ../../Zotlabs/Module/New_channel.php:130 #: ../../Zotlabs/Module/Service_limits.php:11 @@ -856,14 +854,14 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 #: ../../Zotlabs/Module/Profiles.php:200 ../../Zotlabs/Module/Profiles.php:637 #: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Bookmarks.php:70 -#: ../../Zotlabs/Module/Invite.php:21 ../../Zotlabs/Module/Invite.php:102 +#: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Rate.php:115 ../../Zotlabs/Module/Menu.php:130 #: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Defperms.php:182 #: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 #: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Pdledit.php:35 -#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:285 -#: ../../Zotlabs/Module/Wiki.php:428 ../../Zotlabs/Module/Suggest.php:32 +#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:284 +#: ../../Zotlabs/Module/Wiki.php:427 ../../Zotlabs/Module/Suggest.php:32 #: ../../Zotlabs/Module/Connedit.php:397 #: ../../Zotlabs/Module/Notifications.php:11 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 @@ -874,12 +872,12 @@ msgid "Permission denied." msgstr "Acceso denegado." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1723 +#: ../../include/selectors.php:77 ../../include/channel.php:1747 msgid "Male" msgstr "Hombre" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1721 +#: ../../include/selectors.php:77 ../../include/channel.php:1745 msgid "Female" msgstr "Mujer" @@ -927,9 +925,9 @@ msgstr "Nombre completo" #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 #: ../../addon/redred/Mod_Redred.php:71 ../../addon/rtof/Mod_Rtof.php:57 -#: ../../include/network.php:1764 ../../Zotlabs/Module/Cdav.php:1376 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../include/network.php:1768 ../../Zotlabs/Module/Cdav.php:1377 +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Admin/Accounts.php:330 #: ../../Zotlabs/Module/Profiles.php:789 ../../Zotlabs/Module/Connedit.php:920 msgid "Email" msgstr "Correo electrónico" @@ -1149,7 +1147,7 @@ msgstr "Tenga en cuenta que las estadísticas de Diaspora y Friendica se refiere msgid "Channel is required." msgstr "Se requiere un canal." -#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:322 +#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:326 msgid "Invalid channel." msgstr "El canal no es válido." @@ -1207,7 +1205,7 @@ msgstr "Se han importado las fotos" #: ../../include/items.php:441 ../../Zotlabs/Module/Import_items.php:120 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Group.php:99 #: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Cloud.php:123 -#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:89 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:82 #: ../../Zotlabs/Web/WebServer.php:115 msgid "Permission denied" @@ -1253,10 +1251,10 @@ msgid "0 or blank to import all available" msgstr "0 o en blanco para importar todos los disponibles" #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/pubcrawl/as.php:2049 ../../addon/diaspora/Receiver.php:1641 -#: ../../include/text.php:2253 ../../include/conversation.php:128 +#: ../../addon/pubcrawl/as.php:2101 ../../addon/diaspora/Receiver.php:1649 +#: ../../include/text.php:2254 ../../include/conversation.php:128 #: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Tagger.php:71 -#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Lib/Activity.php:3229 +#: ../../Zotlabs/Module/Subthread.php:115 ../../Zotlabs/Lib/Activity.php:3264 msgid "photo" msgstr "foto" @@ -1388,7 +1386,7 @@ msgid "Post to GNU social" msgstr "Publicar en GNU social" #: ../../addon/statusnet/statusnet.php:593 -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:420 msgid "Site name" msgstr "Nombre del sitio" @@ -1453,7 +1451,7 @@ msgstr "Publicar en WordPress" #: ../../addon/wppost/wppost.php:173 ../../addon/wppost/Mod_Wppost.php:98 #: ../../addon/dwpost/Mod_Dwpost.php:69 ../../addon/dwpost/dwpost.php:134 -#: ../../addon/ljpost/ljpost.php:134 ../../Zotlabs/Module/Wiki.php:384 +#: ../../addon/ljpost/ljpost.php:134 ../../Zotlabs/Module/Wiki.php:383 msgid "Source" msgstr "Fuente" @@ -1576,16 +1574,16 @@ msgstr "Modificado desde la fecha yyyy-mm-dd" msgid "Until modified date yyyy-mm-dd" msgstr "Modificado hasta la fecha yyyy-mm-dd" -#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1331 +#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1332 msgid "Set your location" msgstr "Establecer su ubicación" -#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1332 +#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1333 msgid "Clear browser location" msgstr "Eliminar los datos de localización geográfica del navegador" #: ../../addon/hsse/hsse.php:95 ../../addon/mail/Mod_Mail.php:167 -#: ../../addon/mail/Mod_Mail.php:310 ../../include/conversation.php:1344 +#: ../../addon/mail/Mod_Mail.php:310 ../../include/conversation.php:1345 #: ../../Zotlabs/Module/Article_edit.php:100 #: ../../Zotlabs/Module/Card_edit.php:101 #: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Chat.php:220 @@ -1593,129 +1591,129 @@ msgstr "Eliminar los datos de localización geográfica del navegador" msgid "Insert web link" msgstr "Insertar enlace web" -#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1348 +#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1349 msgid "Embed (existing) photo from your photo albums" msgstr "Insertar una foto de sus álbumes" #: ../../addon/hsse/hsse.php:134 ../../addon/mail/Mod_Mail.php:120 -#: ../../addon/mail/Mod_Mail.php:241 ../../include/conversation.php:1383 +#: ../../addon/mail/Mod_Mail.php:241 ../../include/conversation.php:1382 #: ../../Zotlabs/Module/Chat.php:218 msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1384 +#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1383 msgid "Tag term:" msgstr "Término de la etiqueta:" -#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1385 +#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1384 msgid "Where are you right now?" msgstr "¿Donde está ahora?" -#: ../../addon/hsse/hsse.php:139 ../../include/conversation.php:1388 +#: ../../addon/hsse/hsse.php:139 ../../include/conversation.php:1387 #: ../../Zotlabs/Module/Profile_photo.php:509 -#: ../../Zotlabs/Module/Cover_photo.php:430 ../../Zotlabs/Module/Wiki.php:403 +#: ../../Zotlabs/Module/Cover_photo.php:430 ../../Zotlabs/Module/Wiki.php:402 msgid "Choose images to embed" msgstr "Elegir imágenes para incluir" -#: ../../addon/hsse/hsse.php:140 ../../include/conversation.php:1389 +#: ../../addon/hsse/hsse.php:140 ../../include/conversation.php:1388 #: ../../Zotlabs/Module/Profile_photo.php:510 -#: ../../Zotlabs/Module/Cover_photo.php:431 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Cover_photo.php:431 ../../Zotlabs/Module/Wiki.php:403 msgid "Choose an album" msgstr "Elegir un álbum" -#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1390 +#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1389 msgid "Choose a different album..." msgstr "Elegir un álbum diferente..." -#: ../../addon/hsse/hsse.php:142 ../../include/conversation.php:1391 +#: ../../addon/hsse/hsse.php:142 ../../include/conversation.php:1390 #: ../../Zotlabs/Module/Profile_photo.php:512 -#: ../../Zotlabs/Module/Cover_photo.php:433 ../../Zotlabs/Module/Wiki.php:406 +#: ../../Zotlabs/Module/Cover_photo.php:433 ../../Zotlabs/Module/Wiki.php:405 msgid "Error getting album list" msgstr "Error al obtener la lista de álbumes" -#: ../../addon/hsse/hsse.php:143 ../../include/conversation.php:1392 +#: ../../addon/hsse/hsse.php:143 ../../include/conversation.php:1391 #: ../../Zotlabs/Module/Profile_photo.php:513 -#: ../../Zotlabs/Module/Cover_photo.php:434 ../../Zotlabs/Module/Wiki.php:407 +#: ../../Zotlabs/Module/Cover_photo.php:434 ../../Zotlabs/Module/Wiki.php:406 msgid "Error getting photo link" msgstr "Error al obtener el enlace de la foto" -#: ../../addon/hsse/hsse.php:144 ../../include/conversation.php:1393 +#: ../../addon/hsse/hsse.php:144 ../../include/conversation.php:1392 #: ../../Zotlabs/Module/Profile_photo.php:514 -#: ../../Zotlabs/Module/Cover_photo.php:435 ../../Zotlabs/Module/Wiki.php:408 +#: ../../Zotlabs/Module/Cover_photo.php:435 ../../Zotlabs/Module/Wiki.php:407 msgid "Error getting album" msgstr "Error al obtener el álbum" -#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1394 +#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1393 msgid "Comments enabled" msgstr "Comentarios habilitados" -#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1395 +#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1394 msgid "Comments disabled" msgstr "Comentarios deshabilitados" -#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1405 +#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1404 #: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Module/Events.php:486 #: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:837 msgid "Preview" msgstr "Previsualizar" -#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1438 +#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1437 #: ../../Zotlabs/Widget/Cdav.php:136 ../../Zotlabs/Module/Webpages.php:256 #: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1078 -#: ../../Zotlabs/Module/Wiki.php:301 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Wiki.php:300 ../../Zotlabs/Module/Layouts.php:194 msgid "Share" msgstr "Compartir" -#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1447 +#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1446 msgid "Page link name" msgstr "Nombre del enlace de la página" -#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1450 +#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1449 msgid "Post as" msgstr "Publicar como" -#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1452 +#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1451 #: ../../Zotlabs/Lib/ThreadItem.php:828 msgid "Bold" msgstr "Negrita" -#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1453 +#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1452 #: ../../Zotlabs/Lib/ThreadItem.php:829 msgid "Italic" msgstr "Itálico " -#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1454 +#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1453 #: ../../Zotlabs/Lib/ThreadItem.php:830 msgid "Underline" msgstr "Subrayar" -#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1455 +#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1454 #: ../../Zotlabs/Lib/ThreadItem.php:831 msgid "Quote" msgstr "Citar" -#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1456 +#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1455 #: ../../Zotlabs/Lib/ThreadItem.php:832 msgid "Code" msgstr "Código" -#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1457 +#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1456 #: ../../Zotlabs/Lib/ThreadItem.php:834 msgid "Attach/Upload file" msgstr "Adjuntar/cargar fichero" -#: ../../addon/hsse/hsse.php:208 ../../include/conversation.php:1460 -#: ../../Zotlabs/Module/Wiki.php:400 +#: ../../addon/hsse/hsse.php:208 ../../include/conversation.php:1459 +#: ../../Zotlabs/Module/Wiki.php:399 msgid "Embed an image from your albums" msgstr "Incluir una imagen de sus álbumes" #: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 -#: ../../include/conversation.php:1461 ../../include/conversation.php:1516 +#: ../../include/conversation.php:1460 ../../include/conversation.php:1515 #: ../../Zotlabs/Module/Article_edit.php:131 #: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 #: ../../Zotlabs/Module/Card_edit.php:132 ../../Zotlabs/Module/Oauth.php:112 #: ../../Zotlabs/Module/Oauth.php:138 ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Cdav.php:1058 ../../Zotlabs/Module/Cdav.php:1390 +#: ../../Zotlabs/Module/Cdav.php:1059 ../../Zotlabs/Module/Cdav.php:1391 #: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 #: ../../Zotlabs/Module/Editpost.php:111 #: ../../Zotlabs/Module/Admin/Addons.php:427 @@ -1724,32 +1722,32 @@ msgstr "Incluir una imagen de sus álbumes" #: ../../Zotlabs/Module/Editlayout.php:140 #: ../../Zotlabs/Module/Cover_photo.php:428 #: ../../Zotlabs/Module/Profiles.php:803 ../../Zotlabs/Module/Oauth2.php:117 -#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:368 -#: ../../Zotlabs/Module/Wiki.php:401 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:367 +#: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Connedit.php:934 #: ../../Zotlabs/Storage/Browser.php:383 msgid "Cancel" msgstr "Cancelar" #: ../../addon/hsse/hsse.php:210 ../../addon/hsse/hsse.php:257 -#: ../../include/conversation.php:1462 ../../include/conversation.php:1515 +#: ../../include/conversation.php:1461 ../../include/conversation.php:1514 #: ../../Zotlabs/Module/Profile_photo.php:508 -#: ../../Zotlabs/Module/Cover_photo.php:429 ../../Zotlabs/Module/Wiki.php:402 +#: ../../Zotlabs/Module/Cover_photo.php:429 ../../Zotlabs/Module/Wiki.php:401 msgid "OK" msgstr "OK" -#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1464 +#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1463 msgid "Toggle voting" msgstr "Cambiar votación" -#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1471 +#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1470 msgid "Disable comments" msgstr "Dehabilitar los comentarios" -#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1472 +#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1471 msgid "Toggle comments" msgstr "Activar o desactivar los comentarios" -#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1478 +#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1477 #: ../../Zotlabs/Module/Article_edit.php:117 #: ../../Zotlabs/Module/Card_edit.php:118 #: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:674 @@ -1757,30 +1755,30 @@ msgstr "Activar o desactivar los comentarios" msgid "Title (optional)" msgstr "Título (opcional)" -#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1482 +#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1481 msgid "Categories (optional, comma-separated list)" msgstr "Temas (opcional, lista separada por comas)" -#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1483 +#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1482 #: ../../Zotlabs/Module/Events.php:487 msgid "Permission settings" msgstr "Configuración de permisos" -#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1505 +#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1504 msgid "Other networks and post services" msgstr "Otras redes y servicios de publicación" #: ../../addon/hsse/hsse.php:250 ../../addon/mail/Mod_Mail.php:171 -#: ../../addon/mail/Mod_Mail.php:314 ../../include/conversation.php:1508 +#: ../../addon/mail/Mod_Mail.php:314 ../../include/conversation.php:1507 msgid "Set expiration date" msgstr "Configurar fecha de caducidad" -#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1511 +#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1510 msgid "Set publish date" msgstr "Establecer la fecha de publicación" #: ../../addon/hsse/hsse.php:255 ../../addon/mail/Mod_Mail.php:173 -#: ../../addon/mail/Mod_Mail.php:316 ../../include/conversation.php:1513 +#: ../../addon/mail/Mod_Mail.php:316 ../../include/conversation.php:1512 #: ../../Zotlabs/Module/Chat.php:219 ../../Zotlabs/Lib/ThreadItem.php:841 msgid "Encrypt text" msgstr "Cifrar texto" @@ -1896,37 +1894,37 @@ msgstr "Generador QR" msgid "Enter some text" msgstr "Escribir algún texto" -#: ../../addon/pubcrawl/as.php:1183 ../../include/cdav.php:158 +#: ../../addon/pubcrawl/as.php:1189 ../../include/cdav.php:158 #: ../../include/cdav.php:159 ../../include/cdav.php:167 #: ../../include/conversation.php:1214 ../../Zotlabs/Widget/Album.php:84 -#: ../../Zotlabs/Widget/Pinned.php:270 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Pinned.php:268 ../../Zotlabs/Widget/Portfolio.php:95 #: ../../Zotlabs/Module/Embedphotos.php:177 #: ../../Zotlabs/Module/Photos.php:793 ../../Zotlabs/Module/Photos.php:1255 -#: ../../Zotlabs/Lib/Activity.php:1529 ../../Zotlabs/Lib/Apps.php:1112 +#: ../../Zotlabs/Lib/Activity.php:1552 ../../Zotlabs/Lib/Apps.php:1112 #: ../../Zotlabs/Lib/Apps.php:1196 msgid "Unknown" msgstr "Desconocido" -#: ../../addon/pubcrawl/as.php:1475 ../../addon/pubcrawl/as.php:1887 -#: ../../addon/pubcrawl/as.php:2095 ../../include/network.php:1763 -#: ../../Zotlabs/Lib/Activity.php:3079 ../../Zotlabs/Lib/Activity.php:3271 +#: ../../addon/pubcrawl/as.php:1490 ../../addon/pubcrawl/as.php:1939 +#: ../../addon/pubcrawl/as.php:2147 ../../include/network.php:1767 +#: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 msgid "ActivityPub" msgstr "ActivityPub" -#: ../../addon/pubcrawl/as.php:2049 ../../addon/diaspora/Receiver.php:1641 -#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:112 +#: ../../addon/pubcrawl/as.php:2101 ../../addon/diaspora/Receiver.php:1649 +#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:115 msgid "status" msgstr "el mensaje de estado " -#: ../../addon/pubcrawl/as.php:2086 ../../addon/diaspora/Receiver.php:1587 +#: ../../addon/pubcrawl/as.php:2138 ../../addon/diaspora/Receiver.php:1595 #: ../../include/conversation.php:174 ../../Zotlabs/Module/Like.php:471 -#: ../../Zotlabs/Lib/Activity.php:3262 +#: ../../Zotlabs/Lib/Activity.php:3297 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../addon/pubcrawl/as.php:2088 ../../include/conversation.php:177 -#: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3264 +#: ../../addon/pubcrawl/as.php:2140 ../../include/conversation.php:177 +#: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 #, 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" @@ -2219,12 +2217,12 @@ msgstr "Reunámonos aquí" #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Oauth.php:113 #: ../../Zotlabs/Module/Oauth.php:139 ../../Zotlabs/Module/Chat.php:257 -#: ../../Zotlabs/Module/Cdav.php:1372 +#: ../../Zotlabs/Module/Cdav.php:1373 #: ../../Zotlabs/Module/Sharedwithme.php:106 #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Lib/NativeWikiPage.php:563 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Lib/NativeWikiPage.php:576 #: ../../Zotlabs/Storage/Browser.php:377 msgid "Name" msgstr "Nombre" @@ -2232,7 +2230,7 @@ msgstr "Nombre" #: ../../addon/rendezvous/rendezvous.php:173 #: ../../addon/cart/submodules/hzservices.php:655 #: ../../addon/cart/submodules/manualcat.php:260 -#: ../../Zotlabs/Module/Cdav.php:1014 ../../Zotlabs/Module/Events.php:481 +#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:481 #: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Rbmark.php:101 msgid "Description" msgstr "Descripción" @@ -2313,7 +2311,7 @@ msgid "You have no rendezvous. Press the button above to create a rendezvous!" msgstr "No tiene ninguna cita. ¡Presione el botón de arriba para crear una!" #: ../../addon/rendezvous/rendezvous.php:401 -#: ../../Zotlabs/Module/Setup.php:718 +#: ../../Zotlabs/Module/Setup.php:720 msgid "Errors encountered creating database tables." msgstr "Se han encontrado errores al crear las tablas de la base de datos." @@ -2373,10 +2371,11 @@ msgid "To:" msgstr "Para:" #: ../../addon/mail/Mod_Mail.php:161 ../../addon/mail/Mod_Mail.php:303 +#: ../../Zotlabs/Module/Invite.php:542 msgid "Subject:" msgstr "Asunto:" -#: ../../addon/mail/Mod_Mail.php:164 ../../Zotlabs/Module/Invite.php:157 +#: ../../addon/mail/Mod_Mail.php:164 ../../Zotlabs/Module/Invite.php:539 msgid "Your message:" msgstr "Su mensaje:" @@ -2848,7 +2847,8 @@ msgstr "Etiqueta" #: ../../addon/cart/submodules/orderoptions.php:358 #: ../../addon/cart/submodules/orderoptions.php:434 #: ../../addon/cart/submodules/orderoptions.php:458 -#: ../../include/datetime.php:211 ../../Zotlabs/Module/Events.php:468 +#: ../../include/js_strings.php:123 ../../include/datetime.php:211 +#: ../../Zotlabs/Module/Register.php:522 ../../Zotlabs/Module/Events.php:468 #: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Appman.php:143 #: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Profiles.php:747 #: ../../Zotlabs/Module/Profiles.php:751 @@ -3086,7 +3086,7 @@ 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/diaspora/import_diaspora.php:142 -#: ../../Zotlabs/Module/Import.php:594 +#: ../../Zotlabs/Module/Import.php:595 msgid "Import completed." msgstr "Importación completada." @@ -3109,6 +3109,12 @@ msgstr "App Protocolo Diaspora" msgid "Allow any Diaspora member to comment or like your public posts" msgstr "Permitir que cualquier miembro de Diaspora comente o ponga un like en sus entradas públicas" +#: ../../addon/diaspora/Mod_Diaspora.php:77 +msgid "" +"If this setting is disabled only your contacts will be able to comment or " +"like your public posts" +msgstr "Si esta configuración está desactivada, sólo sus contactos podrán comentar o dar a \"me gusta\" en sus publicaciones públicas" + #: ../../addon/diaspora/Mod_Diaspora.php:81 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " @@ -3126,22 +3132,22 @@ msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" msgid "Diaspora Protocol" msgstr "Protocolo Diaspora" -#: ../../addon/diaspora/Receiver.php:1591 +#: ../../addon/diaspora/Receiver.php:1599 #, php-format msgid "%1$s dislikes %2$s's %3$s" msgstr "a %1$s no le gusta el %3$s de %2$s" -#: ../../addon/diaspora/Receiver.php:2218 ../../Zotlabs/Module/Like.php:481 +#: ../../addon/diaspora/Receiver.php:2226 ../../Zotlabs/Module/Like.php:481 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s participa" -#: ../../addon/diaspora/Receiver.php:2220 ../../Zotlabs/Module/Like.php:483 +#: ../../addon/diaspora/Receiver.php:2228 ../../Zotlabs/Module/Like.php:483 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no participa" -#: ../../addon/diaspora/Receiver.php:2222 ../../Zotlabs/Module/Like.php:485 +#: ../../addon/diaspora/Receiver.php:2230 ../../Zotlabs/Module/Like.php:485 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s de %2$s: %1$s quizá participe" @@ -3230,7 +3236,7 @@ msgid "Web link." msgstr "Enlace Web." #: ../../addon/workflow/workflow.php:2617 -#: ../../addon/workflow/workflow.php:2678 ../../Zotlabs/Module/Cdav.php:1374 +#: ../../addon/workflow/workflow.php:2678 ../../Zotlabs/Module/Cdav.php:1375 #: ../../Zotlabs/Module/Connedit.php:918 msgid "Title" msgstr "Título" @@ -3363,7 +3369,9 @@ msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../addon/opensearch/opensearch.php:42 ../../Zotlabs/Module/Home.php:87 +#: ../../addon/opensearch/opensearch.php:42 +#: ../../Zotlabs/Module/Invite.php:225 ../../Zotlabs/Module/Invite.php:494 +#: ../../Zotlabs/Module/Invite.php:508 ../../Zotlabs/Module/Home.php:87 #: ../../Zotlabs/Module/Home.php:95 ../../Zotlabs/Lib/Enotify.php:66 msgid "$Projectname" msgstr "$Projectname" @@ -3436,7 +3444,7 @@ msgid "New registration" msgstr "Nuevo registro" #: ../../addon/notifyadmin/notifyadmin.php:40 -#: ../../Zotlabs/Module/Invite.php:90 +#: ../../Zotlabs/Module/Invite.php:252 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Falló el envío del mensaje." @@ -3451,7 +3459,7 @@ msgid "Not allowed." msgstr "No permitido/a." #: ../../addon/flashcards/Mod_Flashcards.php:254 -#: ../../include/acl_selectors.php:153 ../../Zotlabs/Module/Chat.php:241 +#: ../../include/acl_selectors.php:154 ../../Zotlabs/Module/Chat.php:241 #: ../../Zotlabs/Module/Filestorage.php:195 #: ../../Zotlabs/Module/Photos.php:678 ../../Zotlabs/Module/Photos.php:1047 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 @@ -3465,12 +3473,12 @@ msgid "Set/edit permissions" msgstr "Establecer/editar los permisos" #: ../../addon/flashcards/Mod_Flashcards.php:284 -#: ../../addon/flashcards/Mod_Flashcards.php:285 ../../include/items.php:3924 +#: ../../addon/flashcards/Mod_Flashcards.php:285 ../../include/items.php:4010 #: ../../Zotlabs/Module/Filestorage.php:29 #: ../../Zotlabs/Module/Admin/Themes.php:72 #: ../../Zotlabs/Module/Admin/Addons.php:260 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:42 -#: ../../Zotlabs/Module/Display.php:432 ../../Zotlabs/Module/Admin.php:62 +#: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 #: ../../Zotlabs/Module/Thing.php:96 msgid "Item not found." msgstr "Elemento no encontrado." @@ -3933,10 +3941,10 @@ msgstr "Publicar en Livejournal" msgid "Posted by" msgstr "Publicado por " -#: ../../addon/mdpost/mdpost.php:41 ../../include/text.php:2117 +#: ../../addon/mdpost/mdpost.php:41 ../../include/text.php:2118 #: ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Module/Wiki.php:371 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:370 msgid "Markdown" msgstr "Markdown" @@ -4057,11 +4065,11 @@ msgstr "Ajustes de XMPP" msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:805 ../../Zotlabs/Lib/Libzot.php:656 +#: ../../include/zot.php:805 ../../Zotlabs/Lib/Libzot.php:655 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2663 ../../Zotlabs/Lib/Libsync.php:737 +#: ../../include/zot.php:2663 ../../Zotlabs/Lib/Libsync.php:740 #, php-format msgid "Unable to verify site signature for %s" msgstr "No ha sido posible de verificar la firma del sitio para %s" @@ -4094,278 +4102,278 @@ msgstr "más antiguas" msgid "newer" msgstr "más recientes" -#: ../../include/text.php:1025 +#: ../../include/text.php:1018 msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:1037 ../../include/features.php:133 +#: ../../include/text.php:1030 ../../include/features.php:133 #: ../../Zotlabs/Module/Connections.php:375 ../../Zotlabs/Lib/Apps.php:333 msgid "Connections" msgstr "Conexiones" -#: ../../include/text.php:1045 ../../Zotlabs/Module/Viewconnections.php:80 +#: ../../include/text.php:1038 ../../Zotlabs/Module/Viewconnections.php:80 #: ../../Zotlabs/Module/Connections.php:289 msgid "Accepts" msgstr "Se acepta" -#: ../../include/text.php:1048 ../../Zotlabs/Module/Viewconnections.php:83 +#: ../../include/text.php:1041 ../../Zotlabs/Module/Viewconnections.php:83 #: ../../Zotlabs/Module/Connections.php:292 msgid "Comments" msgstr "Comentarios" -#: ../../include/text.php:1053 ../../Zotlabs/Module/Viewconnections.php:88 +#: ../../include/text.php:1046 ../../Zotlabs/Module/Viewconnections.php:88 #: ../../Zotlabs/Module/Connections.php:297 msgid "Stream items" msgstr "Elementos del stream" -#: ../../include/text.php:1058 ../../Zotlabs/Module/Viewconnections.php:93 +#: ../../include/text.php:1051 ../../Zotlabs/Module/Viewconnections.php:93 #: ../../Zotlabs/Module/Connections.php:302 msgid "Wall posts" msgstr "Entradas del Muro" -#: ../../include/text.php:1062 ../../Zotlabs/Module/Viewconnections.php:97 +#: ../../include/text.php:1055 ../../Zotlabs/Module/Viewconnections.php:97 #: ../../Zotlabs/Module/Connections.php:306 msgid "Nothing" msgstr "Nada" -#: ../../include/text.php:1077 +#: ../../include/text.php:1070 #, php-format msgid "View all %s connections" msgstr "Ver todas las %s conexiones" -#: ../../include/text.php:1140 +#: ../../include/text.php:1133 #, php-format msgid "Network: %s" msgstr "Red %s" -#: ../../include/text.php:1151 ../../include/text.php:1163 -#: ../../include/nav.php:194 ../../include/acl_selectors.php:148 +#: ../../include/text.php:1144 ../../include/text.php:1156 +#: ../../include/nav.php:194 ../../include/acl_selectors.php:149 #: ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Widget/Activity_filter.php:193 -#: ../../Zotlabs/Module/Search.php:46 ../../Zotlabs/Module/Connections.php:379 +#: ../../Zotlabs/Widget/Activity_filter.php:203 +#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Module/Connections.php:379 #: ../../Zotlabs/Lib/Apps.php:353 msgid "Search" msgstr "Buscar" -#: ../../include/text.php:1243 ../../include/text.php:1247 +#: ../../include/text.php:1236 ../../include/text.php:1240 msgid "poke" msgstr "un toque" -#: ../../include/text.php:1243 ../../include/text.php:1247 +#: ../../include/text.php:1236 ../../include/text.php:1240 #: ../../include/conversation.php:267 msgid "poked" msgstr "ha dado un toque a" -#: ../../include/text.php:1248 +#: ../../include/text.php:1241 msgid "ping" msgstr "un \"ping\"" -#: ../../include/text.php:1248 +#: ../../include/text.php:1241 msgid "pinged" msgstr "ha enviado un \"ping\" a" -#: ../../include/text.php:1249 +#: ../../include/text.php:1242 msgid "prod" msgstr "una incitación " -#: ../../include/text.php:1249 +#: ../../include/text.php:1242 msgid "prodded" msgstr "ha incitado a " -#: ../../include/text.php:1250 +#: ../../include/text.php:1243 msgid "slap" msgstr "una bofetada " -#: ../../include/text.php:1250 +#: ../../include/text.php:1243 msgid "slapped" msgstr "ha abofeteado a " -#: ../../include/text.php:1251 +#: ../../include/text.php:1244 msgid "finger" msgstr "un \"finger\" " -#: ../../include/text.php:1251 +#: ../../include/text.php:1244 msgid "fingered" msgstr "envió un \"finger\" a" -#: ../../include/text.php:1252 +#: ../../include/text.php:1245 msgid "rebuff" msgstr "un reproche" -#: ../../include/text.php:1252 +#: ../../include/text.php:1245 msgid "rebuffed" msgstr "ha hecho un reproche a " -#: ../../include/text.php:1275 +#: ../../include/text.php:1268 msgid "happy" msgstr "feliz " -#: ../../include/text.php:1276 +#: ../../include/text.php:1269 msgid "sad" msgstr "triste " -#: ../../include/text.php:1277 +#: ../../include/text.php:1270 msgid "mellow" msgstr "tranquilo/a" -#: ../../include/text.php:1278 +#: ../../include/text.php:1271 msgid "tired" msgstr "cansado/a " -#: ../../include/text.php:1279 +#: ../../include/text.php:1272 msgid "perky" msgstr "vivaz" -#: ../../include/text.php:1280 +#: ../../include/text.php:1273 msgid "angry" msgstr "enfadado/a" -#: ../../include/text.php:1281 +#: ../../include/text.php:1274 msgid "stupefied" msgstr "asombrado/a" -#: ../../include/text.php:1282 +#: ../../include/text.php:1275 msgid "puzzled" msgstr "perplejo/a" -#: ../../include/text.php:1283 +#: ../../include/text.php:1276 msgid "interested" msgstr "interesado/a" -#: ../../include/text.php:1284 +#: ../../include/text.php:1277 msgid "bitter" msgstr "amargado/a" -#: ../../include/text.php:1285 +#: ../../include/text.php:1278 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:1286 +#: ../../include/text.php:1279 msgid "alive" msgstr "animado/a" -#: ../../include/text.php:1287 +#: ../../include/text.php:1280 msgid "annoyed" msgstr "molesto/a" -#: ../../include/text.php:1288 +#: ../../include/text.php:1281 msgid "anxious" msgstr "ansioso/a" -#: ../../include/text.php:1289 +#: ../../include/text.php:1282 msgid "cranky" msgstr "de mal humor" -#: ../../include/text.php:1290 +#: ../../include/text.php:1283 msgid "disturbed" msgstr "perturbado/a" -#: ../../include/text.php:1291 +#: ../../include/text.php:1284 msgid "frustrated" msgstr "frustrado/a" -#: ../../include/text.php:1292 +#: ../../include/text.php:1285 msgid "depressed" msgstr "deprimido/a" -#: ../../include/text.php:1293 +#: ../../include/text.php:1286 msgid "motivated" msgstr "motivado/a" -#: ../../include/text.php:1294 +#: ../../include/text.php:1287 msgid "relaxed" msgstr "relajado/a" -#: ../../include/text.php:1295 +#: ../../include/text.php:1288 msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1483 ../../include/js_strings.php:99 +#: ../../include/text.php:1476 ../../include/js_strings.php:99 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1483 ../../include/js_strings.php:100 +#: ../../include/text.php:1476 ../../include/js_strings.php:100 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1483 ../../include/js_strings.php:101 +#: ../../include/text.php:1476 ../../include/js_strings.php:101 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1483 ../../include/js_strings.php:102 +#: ../../include/text.php:1476 ../../include/js_strings.php:102 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1483 ../../include/js_strings.php:103 +#: ../../include/text.php:1476 ../../include/js_strings.php:103 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1483 ../../include/js_strings.php:104 +#: ../../include/text.php:1476 ../../include/js_strings.php:104 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1483 ../../include/js_strings.php:98 +#: ../../include/text.php:1476 ../../include/js_strings.php:98 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1487 ../../include/js_strings.php:74 +#: ../../include/text.php:1480 ../../include/js_strings.php:74 msgid "January" msgstr "enero" -#: ../../include/text.php:1487 ../../include/js_strings.php:75 +#: ../../include/text.php:1480 ../../include/js_strings.php:75 msgid "February" msgstr "febrero" -#: ../../include/text.php:1487 ../../include/js_strings.php:76 +#: ../../include/text.php:1480 ../../include/js_strings.php:76 msgid "March" msgstr "marzo" -#: ../../include/text.php:1487 ../../include/js_strings.php:77 +#: ../../include/text.php:1480 ../../include/js_strings.php:77 msgid "April" msgstr "abril" -#: ../../include/text.php:1487 +#: ../../include/text.php:1480 msgid "May" msgstr "mayo" -#: ../../include/text.php:1487 ../../include/js_strings.php:79 +#: ../../include/text.php:1480 ../../include/js_strings.php:79 msgid "June" msgstr "junio" -#: ../../include/text.php:1487 ../../include/js_strings.php:80 +#: ../../include/text.php:1480 ../../include/js_strings.php:80 msgid "July" msgstr "julio" -#: ../../include/text.php:1487 ../../include/js_strings.php:81 +#: ../../include/text.php:1480 ../../include/js_strings.php:81 msgid "August" msgstr "agosto" -#: ../../include/text.php:1487 ../../include/js_strings.php:82 +#: ../../include/text.php:1480 ../../include/js_strings.php:82 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1487 ../../include/js_strings.php:83 +#: ../../include/text.php:1480 ../../include/js_strings.php:83 msgid "October" msgstr "octubre" -#: ../../include/text.php:1487 ../../include/js_strings.php:84 +#: ../../include/text.php:1480 ../../include/js_strings.php:84 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1487 ../../include/js_strings.php:85 +#: ../../include/text.php:1480 ../../include/js_strings.php:85 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1561 +#: ../../include/text.php:1556 msgid "Unknown Attachment" msgstr "Adjunto no reconocido" -#: ../../include/text.php:1563 ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../include/text.php:1558 ../../Zotlabs/Module/Sharedwithme.php:108 #: ../../Zotlabs/Storage/Browser.php:379 msgid "Size" msgstr "Tamaño" -#: ../../include/text.php:1563 ../../include/feedutils.php:873 +#: ../../include/text.php:1558 ../../include/feedutils.php:872 msgid "unknown" msgstr "desconocido" @@ -4373,71 +4381,71 @@ msgstr "desconocido" msgid "remove category" msgstr "eliminar el tema" -#: ../../include/text.php:1675 +#: ../../include/text.php:1676 msgid "remove from file" msgstr "eliminar del fichero" -#: ../../include/text.php:1844 ../../include/message.php:13 +#: ../../include/text.php:1845 ../../include/message.php:13 msgid "Download binary/encrypted content" msgstr "Descargar contenido binario o cifrado" -#: ../../include/text.php:1915 +#: ../../include/text.php:1916 msgid "Poll has ended." msgstr "La encuesta ha terminado" -#: ../../include/text.php:1918 +#: ../../include/text.php:1919 #, php-format msgid "Poll ends: %s" msgstr "Finales de la encuesta: %s" -#: ../../include/text.php:1923 ../../Zotlabs/Lib/ThreadItem.php:446 +#: ../../include/text.php:1924 ../../Zotlabs/Lib/ThreadItem.php:446 msgid "Vote" msgstr "Votar" -#: ../../include/text.php:2075 ../../Zotlabs/Module/Events.php:669 +#: ../../include/text.php:2076 ../../Zotlabs/Module/Events.php:669 msgid "Link to Source" msgstr "Enlazar con la entrada en su ubicación original" -#: ../../include/text.php:2097 ../../include/language.php:424 +#: ../../include/text.php:2098 ../../include/language.php:428 msgid "default" msgstr "por defecto" -#: ../../include/text.php:2105 +#: ../../include/text.php:2106 msgid "Page layout" msgstr "Plantilla de la página" -#: ../../include/text.php:2105 +#: ../../include/text.php:2106 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:2115 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Module/Wiki.php:371 +#: ../../include/text.php:2116 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:370 msgid "BBcode" msgstr "BBcode" -#: ../../include/text.php:2116 +#: ../../include/text.php:2117 msgid "HTML" msgstr "HTML" -#: ../../include/text.php:2118 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 +#: ../../include/text.php:2119 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 msgid "Text" msgstr "Texto" -#: ../../include/text.php:2119 +#: ../../include/text.php:2120 msgid "Comanche Layout" msgstr "Plantilla de Comanche" -#: ../../include/text.php:2124 +#: ../../include/text.php:2125 msgid "PHP" msgstr "PHP" -#: ../../include/text.php:2133 +#: ../../include/text.php:2134 msgid "Page content type" msgstr "Tipo de contenido de la página" -#: ../../include/text.php:2256 ../../include/event.php:1259 +#: ../../include/text.php:2257 ../../include/event.php:1259 #: ../../include/conversation.php:132 #: ../../Zotlabs/Module/Channel_calendar.php:221 #: ../../Zotlabs/Module/Like.php:441 ../../Zotlabs/Module/Tagger.php:75 @@ -4445,110 +4453,110 @@ msgstr "Tipo de contenido de la página" msgid "event" msgstr "el/su evento" -#: ../../include/text.php:2259 ../../include/conversation.php:158 -#: ../../include/bbcode.php:543 ../../include/markdown.php:204 -#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3229 +#: ../../include/text.php:2260 ../../include/conversation.php:158 +#: ../../include/bbcode.php:555 ../../include/markdown.php:204 +#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3264 msgid "post" msgstr "la entrada" -#: ../../include/text.php:2261 ../../include/conversation.php:160 +#: ../../include/text.php:2262 ../../include/conversation.php:160 #: ../../Zotlabs/Module/Tagger.php:81 msgid "comment" msgstr "el comentario" -#: ../../include/text.php:2266 +#: ../../include/text.php:2267 msgid "activity" msgstr "la/su actividad" -#: ../../include/text.php:2269 +#: ../../include/text.php:2270 msgid "poll" msgstr "encuesta" -#: ../../include/text.php:2370 +#: ../../include/text.php:2383 msgid "a-z, 0-9, -, and _ only" msgstr "a-z, 0-9, -, and _ only" -#: ../../include/text.php:2696 +#: ../../include/text.php:2709 msgid "Design Tools" msgstr "Herramientas de diseño web" -#: ../../include/text.php:2699 ../../Zotlabs/Module/Blocks.php:154 +#: ../../include/text.php:2712 ../../Zotlabs/Module/Blocks.php:154 msgid "Blocks" msgstr "Bloques" -#: ../../include/text.php:2700 ../../Zotlabs/Module/Menu.php:171 +#: ../../include/text.php:2713 ../../Zotlabs/Module/Menu.php:171 msgid "Menus" msgstr "Menús" -#: ../../include/text.php:2701 ../../Zotlabs/Module/Layouts.php:184 +#: ../../include/text.php:2714 ../../Zotlabs/Module/Layouts.php:184 msgid "Layouts" msgstr "Plantillas" -#: ../../include/text.php:2702 +#: ../../include/text.php:2715 msgid "Pages" msgstr "Páginas" -#: ../../include/text.php:2714 +#: ../../include/text.php:2727 msgid "Import" msgstr "Importar" -#: ../../include/text.php:2715 +#: ../../include/text.php:2728 msgid "Import website..." msgstr "Importar un sitio web..." -#: ../../include/text.php:2716 +#: ../../include/text.php:2729 msgid "Select folder to import" msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/text.php:2717 +#: ../../include/text.php:2730 msgid "Import from a zipped folder:" msgstr "Importar desde una carpeta comprimida: " -#: ../../include/text.php:2718 +#: ../../include/text.php:2731 msgid "Import from cloud files:" msgstr "Importar desde los ficheros en la nube: " -#: ../../include/text.php:2719 +#: ../../include/text.php:2732 msgid "/cloud/channel/path/to/folder" msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/text.php:2720 +#: ../../include/text.php:2733 msgid "Enter path to website files" msgstr "Ruta a los ficheros del sitio web" -#: ../../include/text.php:2721 +#: ../../include/text.php:2734 msgid "Select folder" msgstr "Seleccionar la carpeta" -#: ../../include/text.php:2722 +#: ../../include/text.php:2735 msgid "Export website..." msgstr "Exportar un sitio web..." -#: ../../include/text.php:2723 +#: ../../include/text.php:2736 msgid "Export to a zip file" msgstr "Exportar a un fichero comprimido .zip" -#: ../../include/text.php:2724 +#: ../../include/text.php:2737 msgid "website.zip" msgstr "sitio_web.zip" -#: ../../include/text.php:2725 +#: ../../include/text.php:2738 msgid "Enter a name for the zip file." msgstr "Escriba un nombre para el fichero zip." -#: ../../include/text.php:2726 +#: ../../include/text.php:2739 msgid "Export to cloud files" msgstr "Exportar a la nube de ficheros" -#: ../../include/text.php:2727 +#: ../../include/text.php:2740 msgid "/path/to/export/folder" msgstr "/ruta/para/exportar/carpeta" -#: ../../include/text.php:2728 +#: ../../include/text.php:2741 msgid "Enter a path to a cloud files destination." msgstr "Escriba una ruta de destino a la nube de ficheros." -#: ../../include/text.php:2729 +#: ../../include/text.php:2742 msgid "Specify folder" msgstr "Especificar una carpeta" @@ -4570,7 +4578,7 @@ msgid "Finishes:" msgstr "Finaliza:" #: ../../include/event.php:63 ../../include/event.php:134 -#: ../../include/channel.php:1634 ../../Zotlabs/Module/Directory.php:354 +#: ../../include/channel.php:1658 ../../Zotlabs/Module/Directory.php:354 msgid "Location:" msgstr "Ubicación:" @@ -4611,13 +4619,13 @@ msgid "Cancelled" msgstr "Cancelado/a" #: ../../include/event.php:1422 ../../include/connections.php:734 -#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:794 +#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Profiles.php:794 #: ../../Zotlabs/Module/Connedit.php:925 msgid "Mobile" msgstr "Móvil" #: ../../include/event.php:1423 ../../include/connections.php:735 -#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Profiles.php:795 #: ../../Zotlabs/Module/Connedit.php:926 msgid "Home" msgstr "Inicio" @@ -4631,7 +4639,7 @@ msgid "Home, Fax" msgstr "Fax particular" #: ../../include/event.php:1426 ../../include/connections.php:738 -#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Profiles.php:796 +#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Profiles.php:796 #: ../../Zotlabs/Module/Connedit.php:927 msgid "Work" msgstr "Trabajo" @@ -4648,7 +4656,7 @@ msgstr "Fax de trabajo" #: ../../include/selectors.php:60 ../../include/selectors.php:77 #: ../../include/selectors.php:115 ../../include/selectors.php:151 #: ../../include/connections.php:741 ../../include/connections.php:748 -#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Profiles.php:797 +#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:797 #: ../../Zotlabs/Module/Connedit.php:928 #: ../../Zotlabs/Access/PermissionRoles.php:310 msgid "Other" @@ -4666,8 +4674,8 @@ msgstr "Desactivado" msgid "On" msgstr "Activado" -#: ../../include/features.php:82 ../../include/nav.php:464 -#: ../../include/nav.php:467 ../../Zotlabs/Lib/Apps.php:346 +#: ../../include/features.php:82 ../../include/nav.php:463 +#: ../../include/nav.php:466 ../../Zotlabs/Lib/Apps.php:346 msgid "Calendar" msgstr "Calendario" @@ -4707,11 +4715,11 @@ msgstr "Nube de etiquetas" 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:124 ../../include/features.php:359 +#: ../../include/features.php:124 ../../include/features.php:358 msgid "Use blog/list mode" msgstr "Usar el modo blog/lista" -#: ../../include/features.php:125 ../../include/features.php:360 +#: ../../include/features.php:125 ../../include/features.php:359 msgid "Comments will be displayed separately" msgstr "Los comentarios se mostrarán por separado" @@ -4783,195 +4791,195 @@ msgstr "Temas de las entradas" msgid "Add categories to your posts" msgstr "Añadir temas a sus publicaciones" -#: ../../include/features.php:219 +#: ../../include/features.php:218 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:220 +#: ../../include/features.php:219 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:227 +#: ../../include/features.php:226 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:228 +#: ../../include/features.php:227 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:235 +#: ../../include/features.php:234 msgid "Disable Comments" msgstr "Deshabilitar comentarios" -#: ../../include/features.php:236 +#: ../../include/features.php:235 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:243 +#: ../../include/features.php:242 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:244 +#: ../../include/features.php:243 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:251 +#: ../../include/features.php:250 msgid "Content Expiration" msgstr "Caducidad del contenido" -#: ../../include/features.php:252 +#: ../../include/features.php:251 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:259 +#: ../../include/features.php:258 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:260 +#: ../../include/features.php:259 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:267 +#: ../../include/features.php:266 msgid "Auto-save drafts of posts and comments" msgstr "Guardar automáticamente borradores de entradas y comentarios" -#: ../../include/features.php:268 +#: ../../include/features.php:267 msgid "" "Automatically saves post and comment drafts in local browser storage to help" " prevent accidental loss of compositions" msgstr "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones." -#: ../../include/features.php:277 +#: ../../include/features.php:276 msgid "Manage" msgstr "Gestionar" -#: ../../include/features.php:281 +#: ../../include/features.php:280 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:282 +#: ../../include/features.php:281 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:291 ../../Zotlabs/Module/Connections.php:333 +#: ../../include/features.php:290 ../../Zotlabs/Module/Connections.php:333 msgid "Network" msgstr "Red" -#: ../../include/features.php:295 +#: ../../include/features.php:294 msgid "Events Filter" msgstr "Filtro de eventos" -#: ../../include/features.php:296 +#: ../../include/features.php:295 msgid "Ability to display only events" msgstr "Capacidad para mostrar solo eventos" -#: ../../include/features.php:303 +#: ../../include/features.php:302 msgid "Polls Filter" msgstr "Filtro de encuestas" -#: ../../include/features.php:304 +#: ../../include/features.php:303 msgid "Ability to display only polls" msgstr "Capacidad para mostrar solo encuestas" -#: ../../include/features.php:311 ../../Zotlabs/Widget/Savedsearch.php:83 +#: ../../include/features.php:310 ../../Zotlabs/Widget/Savedsearch.php:83 msgid "Saved Searches" msgstr "Búsquedas guardadas" -#: ../../include/features.php:312 +#: ../../include/features.php:311 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:319 ../../include/contact_widgets.php:53 -#: ../../Zotlabs/Widget/Activity_filter.php:179 +#: ../../include/features.php:318 ../../include/contact_widgets.php:53 +#: ../../Zotlabs/Widget/Activity_filter.php:189 #: ../../Zotlabs/Widget/Filer.php:28 msgid "Saved Folders" msgstr "Carpetas guardadas" -#: ../../include/features.php:320 +#: ../../include/features.php:319 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:327 +#: ../../include/features.php:326 msgid "Alternate Stream Order" msgstr "Orden de stream alternativo" -#: ../../include/features.php:328 +#: ../../include/features.php:327 msgid "" "Ability to order the stream by last post date, last comment date or " "unthreaded activities" msgstr "Posibilidad de ordenar el stream por última fecha de publicación, última fecha de comentario o actividades sin hilo" -#: ../../include/features.php:335 +#: ../../include/features.php:334 msgid "Contact Filter" msgstr "Filtro de contactos" -#: ../../include/features.php:336 +#: ../../include/features.php:335 msgid "Ability to display only posts of a selected contact" msgstr "Posibilidad de mostrar sólo los mensajes de un contacto seleccionado" -#: ../../include/features.php:343 +#: ../../include/features.php:342 msgid "Forum Filter" msgstr "Filtro de foro" -#: ../../include/features.php:344 +#: ../../include/features.php:343 msgid "Ability to display only posts of a specific forum" msgstr "Posibilidad de mostrar sólo los mensajes de un foro específico" -#: ../../include/features.php:351 +#: ../../include/features.php:350 msgid "Personal Posts Filter" msgstr "Filtro de entradas personales" -#: ../../include/features.php:352 +#: ../../include/features.php:351 msgid "Ability to display only posts that you've interacted on" msgstr "Posibilidad de mostrar sólo los mensajes en los que usted haya interactuado" -#: ../../include/features.php:369 ../../include/nav.php:445 +#: ../../include/features.php:368 ../../include/nav.php:444 #: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:345 msgid "Photos" msgstr "Fotos" -#: ../../include/features.php:373 +#: ../../include/features.php:372 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:374 +#: ../../include/features.php:373 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:383 ../../Zotlabs/Lib/Apps.php:363 +#: ../../include/features.php:382 ../../Zotlabs/Lib/Apps.php:363 msgid "Profiles" msgstr "Perfiles" -#: ../../include/features.php:387 +#: ../../include/features.php:386 msgid "Advanced Profiles" msgstr "Perfiles avanzados" -#: ../../include/features.php:388 +#: ../../include/features.php:387 msgid "Additional profile sections and selections" msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/features.php:395 +#: ../../include/features.php:394 msgid "Profile Import/Export" msgstr "Importar/Exportar perfil" -#: ../../include/features.php:396 +#: ../../include/features.php:395 msgid "Save and load profile details across sites/channels" msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../include/features.php:403 +#: ../../include/features.php:402 msgid "Multiple Profiles" msgstr "Múltiples perfiles" -#: ../../include/features.php:404 +#: ../../include/features.php:403 msgid "Ability to create multiple profiles" msgstr "Capacidad de crear múltiples perfiles" -#: ../../include/security.php:608 +#: ../../include/security.php:607 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." @@ -5010,7 +5018,7 @@ msgstr "%s contraer" msgid "Password too short" msgstr "Contraseña demasiado corta" -#: ../../include/js_strings.php:12 +#: ../../include/js_strings.php:12 ../../Zotlabs/Module/Register.php:158 msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" @@ -5060,7 +5068,7 @@ msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" #: ../../include/js_strings.php:25 ../../Zotlabs/Module/Pubsites.php:53 -#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:483 +#: ../../Zotlabs/Module/Cdav.php:1016 ../../Zotlabs/Module/Events.php:483 #: ../../Zotlabs/Module/Profiles.php:511 ../../Zotlabs/Module/Profiles.php:736 #: ../../Zotlabs/Module/Locs.php:128 msgid "Location" @@ -5120,7 +5128,7 @@ msgstr "Anclado/a" msgid "Pin to the top" msgstr "Anclar en la parte superior" -#: ../../include/js_strings.php:39 ../../Zotlabs/Widget/Pinned.php:157 +#: ../../include/js_strings.php:39 ../../Zotlabs/Widget/Pinned.php:155 #: ../../Zotlabs/Lib/ThreadItem.php:473 msgid "Unpin from the top" msgstr "Desanclar de la parte superior" @@ -5319,12 +5327,16 @@ msgstr "Todos los días" msgid "Please stand by while your download is being prepared." msgstr "Por favor, espere mientras se prepara la descarga." +#: ../../include/js_strings.php:122 +msgid "Email address not valid" +msgstr "Dirección de correo electrónica no válida" + #: ../../include/help.php:80 msgid "Help:" msgstr "Ayuda:" #: ../../include/help.php:117 ../../include/help.php:125 -#: ../../include/nav.php:180 ../../include/nav.php:321 +#: ../../include/nav.php:180 ../../include/nav.php:320 #: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:348 msgid "Help" msgstr "Ayuda" @@ -5336,7 +5348,7 @@ msgstr "No encontrado" #: ../../include/help.php:132 ../../Zotlabs/Module/Display.php:136 #: ../../Zotlabs/Module/Display.php:153 ../../Zotlabs/Module/Display.php:173 #: ../../Zotlabs/Module/Display.php:179 ../../Zotlabs/Module/Page.php:136 -#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Lib/NativeWikiPage.php:520 +#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Lib/NativeWikiPage.php:533 #: ../../Zotlabs/Web/Router.php:186 msgid "Page not found." msgstr "Página no encontrada." @@ -5369,7 +5381,7 @@ 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:666 ../../include/nav.php:448 +#: ../../include/photos.php:666 ../../include/nav.php:447 msgid "Photo Albums" msgstr "Álbumes de fotos" @@ -5382,43 +5394,43 @@ msgstr "Fotos recientes" msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../include/network.php:1758 ../../include/network.php:1759 +#: ../../include/network.php:1762 ../../include/network.php:1763 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1760 +#: ../../include/network.php:1764 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1761 +#: ../../include/network.php:1765 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:1762 +#: ../../include/network.php:1766 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1765 +#: ../../include/network.php:1769 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1766 +#: ../../include/network.php:1770 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1767 +#: ../../include/network.php:1771 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:1768 +#: ../../include/network.php:1772 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1769 +#: ../../include/network.php:1773 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1770 +#: ../../include/network.php:1774 msgid "MySpace" msgstr "MySpace" @@ -5452,8 +5464,8 @@ msgid_plural "%d invitations available" msgstr[0] "%d invitación pendiente" msgstr[1] "%d invitaciones disponibles" -#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:144 -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:145 +#: ../../Zotlabs/Module/Admin/Site.php:416 msgid "Advanced" msgstr "Avanzado" @@ -5508,7 +5520,7 @@ msgstr "Todo" #: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 #: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 #: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../Zotlabs/Module/Cdav.php:1070 ../../Zotlabs/Storage/Browser.php:293 +#: ../../Zotlabs/Module/Cdav.php:1071 ../../Zotlabs/Storage/Browser.php:293 #: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 msgid "Categories" msgstr "Temas" @@ -5522,7 +5534,7 @@ msgstr "Conexiones comunes" msgid "View all %d common connections" msgstr "Ver todas las %d conexiones comunes" -#: ../../include/language.php:437 +#: ../../include/language.php:441 msgid "Select an alternate language" msgstr "Seleccionar un idioma alternativo" @@ -5556,9 +5568,9 @@ msgstr "Administración de canales" msgid "Manage your channels" msgstr "Gestionar sus canales" -#: ../../include/nav.php:104 ../../include/group.php:321 -#: ../../include/acl_selectors.php:86 -#: ../../Zotlabs/Widget/Activity_filter.php:82 +#: ../../include/nav.php:104 ../../include/group.php:327 +#: ../../include/acl_selectors.php:87 +#: ../../Zotlabs/Widget/Activity_filter.php:88 #: ../../Zotlabs/Module/Group.php:142 ../../Zotlabs/Module/Group.php:154 #: ../../Zotlabs/Lib/Group.php:324 ../../Zotlabs/Lib/Apps.php:364 msgid "Privacy Groups" @@ -5580,7 +5592,7 @@ msgid "Account/Channel Settings" msgstr "Ajustes de cuenta/canales" #: ../../include/nav.php:112 ../../include/nav.php:142 -#: ../../include/nav.php:163 ../../boot.php:1710 +#: ../../include/nav.php:163 ../../boot.php:1715 msgid "Logout" msgstr "Finalizar sesión" @@ -5592,7 +5604,7 @@ msgstr "Finalizar esta sesión" msgid "Your profile page" msgstr "Su página del perfil" -#: ../../include/nav.php:118 ../../include/channel.php:1539 +#: ../../include/nav.php:118 ../../include/channel.php:1563 #: ../../Zotlabs/Module/Profiles.php:832 msgid "Edit Profiles" msgstr "Editar perfiles" @@ -5606,7 +5618,7 @@ msgid "Edit your profile" msgstr "Editar su perfil" #: ../../include/nav.php:127 ../../include/nav.php:131 -#: ../../Zotlabs/Lib/Apps.php:336 ../../boot.php:1711 +#: ../../Zotlabs/Lib/Apps.php:336 ../../boot.php:1716 msgid "Login" msgstr "Iniciar sesión" @@ -5622,8 +5634,8 @@ msgstr "Volver a la página principal" msgid "Log me out of this site" msgstr "Salir de este sitio" -#: ../../include/nav.php:168 ../../Zotlabs/Module/Register.php:293 -#: ../../boot.php:1691 +#: ../../include/nav.php:168 ../../Zotlabs/Module/Register.php:566 +#: ../../boot.php:1696 msgid "Register" msgstr "Registrarse" @@ -5647,104 +5659,104 @@ msgstr "Administrador" msgid "Site Setup and Configuration" msgstr "Ajustes y configuración del sitio" -#: ../../include/nav.php:325 ../../Zotlabs/Widget/Notifications.php:182 +#: ../../include/nav.php:324 ../../Zotlabs/Widget/Notifications.php:182 #: ../../Zotlabs/Module/New_channel.php:157 #: ../../Zotlabs/Module/New_channel.php:164 #: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 msgid "Loading" msgstr "Cargando" -#: ../../include/nav.php:331 +#: ../../include/nav.php:330 msgid "@name, !forum, #tag, ?doc, content" msgstr "@nombre, !foro, #tag, ?docs, contenido" -#: ../../include/nav.php:332 +#: ../../include/nav.php:331 msgid "Please wait..." msgstr "Espere por favor…" -#: ../../include/nav.php:338 +#: ../../include/nav.php:337 msgid "Add Apps" msgstr "Añadir aplicaciones" -#: ../../include/nav.php:339 +#: ../../include/nav.php:338 msgid "Arrange Apps" msgstr "Organizar aplicaciones" -#: ../../include/nav.php:340 +#: ../../include/nav.php:339 msgid "Toggle System Apps" msgstr "Alternar aplicaciones de sistema" -#: ../../include/nav.php:422 ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/nav.php:421 ../../Zotlabs/Module/Admin/Channels.php:154 msgid "Channel" msgstr "Canal" -#: ../../include/nav.php:425 +#: ../../include/nav.php:424 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/nav.php:435 ../../Zotlabs/Module/Help.php:83 +#: ../../include/nav.php:434 ../../Zotlabs/Module/Help.php:83 msgid "About" msgstr "Mi perfil" -#: ../../include/nav.php:438 +#: ../../include/nav.php:437 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/nav.php:453 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../include/nav.php:452 ../../Zotlabs/Module/Fbrowser.php:85 #: ../../Zotlabs/Lib/Apps.php:340 ../../Zotlabs/Storage/Browser.php:351 msgid "Files" msgstr "Ficheros" -#: ../../include/nav.php:456 +#: ../../include/nav.php:455 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/nav.php:478 ../../include/nav.php:481 +#: ../../include/nav.php:477 ../../include/nav.php:480 #: ../../Zotlabs/Widget/Chatroom_list.php:16 ../../Zotlabs/Lib/Apps.php:330 msgid "Chatrooms" msgstr "Salas de chat" -#: ../../include/nav.php:491 ../../Zotlabs/Lib/Apps.php:329 +#: ../../include/nav.php:490 ../../Zotlabs/Lib/Apps.php:329 msgid "Bookmarks" msgstr "Marcadores" -#: ../../include/nav.php:494 +#: ../../include/nav.php:493 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/nav.php:502 ../../Zotlabs/Module/Cards.php:207 +#: ../../include/nav.php:501 ../../Zotlabs/Module/Cards.php:207 #: ../../Zotlabs/Lib/Apps.php:326 msgid "Cards" msgstr "Fichas" -#: ../../include/nav.php:505 +#: ../../include/nav.php:504 msgid "View Cards" msgstr "Ver las fichas" -#: ../../include/nav.php:513 ../../Zotlabs/Module/Articles.php:225 +#: ../../include/nav.php:512 ../../Zotlabs/Module/Articles.php:225 #: ../../Zotlabs/Lib/Apps.php:325 msgid "Articles" msgstr "Artículos" -#: ../../include/nav.php:516 +#: ../../include/nav.php:515 msgid "View Articles" msgstr "Ver los artículos" -#: ../../include/nav.php:525 ../../Zotlabs/Module/Webpages.php:252 +#: ../../include/nav.php:524 ../../Zotlabs/Module/Webpages.php:252 #: ../../Zotlabs/Lib/Apps.php:341 msgid "Webpages" msgstr "Páginas web" -#: ../../include/nav.php:528 +#: ../../include/nav.php:527 msgid "View Webpages" msgstr "Ver páginas web" -#: ../../include/nav.php:537 ../../Zotlabs/Widget/Wiki_list.php:15 -#: ../../Zotlabs/Module/Wiki.php:206 +#: ../../include/nav.php:536 ../../Zotlabs/Widget/Wiki_list.php:15 +#: ../../Zotlabs/Module/Wiki.php:205 msgid "Wikis" msgstr "Wikis" -#: ../../include/nav.php:540 ../../Zotlabs/Lib/Apps.php:342 +#: ../../include/nav.php:539 ../../Zotlabs/Lib/Apps.php:342 msgid "Wiki" msgstr "Wiki" @@ -5781,7 +5793,7 @@ msgstr "Edad:" msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/datetime.php:238 ../../boot.php:2715 +#: ../../include/datetime.php:238 ../../boot.php:2730 msgid "never" msgstr "nunca" @@ -6002,9 +6014,9 @@ msgstr "Seleccionar" #: ../../include/conversation.php:730 ../../include/conversation.php:777 #: ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Card_edit.php:130 ../../Zotlabs/Module/Oauth.php:174 -#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Cdav.php:1056 -#: ../../Zotlabs/Module/Cdav.php:1389 ../../Zotlabs/Module/Webpages.php:257 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Cdav.php:1057 +#: ../../Zotlabs/Module/Cdav.php:1390 ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Module/Admin/Accounts.php:320 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:176 #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:139 @@ -6037,7 +6049,7 @@ msgid "Message signature incorrect" msgstr "Firma de mensaje incorrecta" #: ../../include/conversation.php:776 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Accounts.php:318 #: ../../Zotlabs/Module/Connections.php:343 msgid "Approve" msgstr "Aprobar" @@ -6055,19 +6067,19 @@ msgstr "Temas:" msgid "Filed under:" msgstr "Archivado bajo:" -#: ../../include/conversation.php:809 ../../Zotlabs/Widget/Pinned.php:133 +#: ../../include/conversation.php:809 ../../Zotlabs/Widget/Pinned.php:132 #: ../../Zotlabs/Lib/ThreadItem.php:430 #, php-format msgid "from %s" msgstr "desde %s" -#: ../../include/conversation.php:812 ../../Zotlabs/Widget/Pinned.php:136 +#: ../../include/conversation.php:812 ../../Zotlabs/Widget/Pinned.php:135 #: ../../Zotlabs/Lib/ThreadItem.php:433 #, php-format msgid "last edited: %s" msgstr "último cambio: %s" -#: ../../include/conversation.php:813 ../../Zotlabs/Widget/Pinned.php:137 +#: ../../include/conversation.php:813 ../../Zotlabs/Widget/Pinned.php:136 #: ../../Zotlabs/Lib/ThreadItem.php:434 #, php-format msgid "Expires: %s" @@ -6115,7 +6127,7 @@ msgid "Recent Activity" msgstr "Actividad reciente" #: ../../include/conversation.php:1103 ../../include/connections.php:110 -#: ../../include/channel.php:1619 ../../Zotlabs/Widget/Suggestions.php:46 +#: ../../include/channel.php:1643 ../../Zotlabs/Widget/Suggestions.php:46 #: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Module/Directory.php:370 #: ../../Zotlabs/Module/Connections.php:350 #: ../../Zotlabs/Module/Suggest.php:71 @@ -6127,6 +6139,7 @@ msgid "Edit Connection" msgstr "Editar conexión" #: ../../include/conversation.php:1123 +#: ../../Zotlabs/Module/Admin/Accounts.php:347 msgid "Message" msgstr "Mensaje" @@ -6185,40 +6198,40 @@ msgstr "A %s le gusta esto." msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1465 +#: ../../include/conversation.php:1464 msgid "Toggle poll" msgstr "Activar o desactivar encuestas" -#: ../../include/conversation.php:1466 +#: ../../include/conversation.php:1465 msgid "Option" msgstr "Opción" -#: ../../include/conversation.php:1467 +#: ../../include/conversation.php:1466 msgid "Add option" msgstr "Añadir una opción" -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Minutes" msgstr "Minutos " -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Hours" msgstr "Horas " -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Days" msgstr "Días " -#: ../../include/conversation.php:1469 +#: ../../include/conversation.php:1468 msgid "Allow multiple answers" msgstr "Permitir respuestas múltiples" -#: ../../include/conversation.php:1479 +#: ../../include/conversation.php:1478 msgid "Summary (optional)" msgstr "Sumario (opcional)" -#: ../../include/conversation.php:1753 ../../include/taxonomy.php:670 -#: ../../include/channel.php:1782 ../../Zotlabs/Module/Photos.php:1136 +#: ../../include/conversation.php:1752 ../../include/taxonomy.php:670 +#: ../../include/channel.php:1806 ../../Zotlabs/Module/Photos.php:1136 #: ../../Zotlabs/Lib/ThreadItem.php:243 msgctxt "noun" msgid "Like" @@ -6226,7 +6239,7 @@ msgid_plural "Likes" msgstr[0] "Me gusta" msgstr[1] "Me gusta" -#: ../../include/conversation.php:1756 ../../Zotlabs/Module/Photos.php:1141 +#: ../../include/conversation.php:1755 ../../Zotlabs/Module/Photos.php:1141 #: ../../Zotlabs/Lib/ThreadItem.php:248 msgctxt "noun" msgid "Dislike" @@ -6234,42 +6247,42 @@ msgid_plural "Dislikes" msgstr[0] "No me gusta" msgstr[1] "No me gusta" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1758 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1761 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1765 +#: ../../include/conversation.php:1764 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1767 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1770 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1773 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -6336,11 +6349,11 @@ msgstr "Transexual" msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/selectors.php:60 ../../include/channel.php:1727 +#: ../../include/selectors.php:60 ../../include/channel.php:1751 msgid "Neuter" msgstr "Neutral" -#: ../../include/selectors.php:60 ../../include/channel.php:1729 +#: ../../include/selectors.php:60 ../../include/channel.php:1753 msgid "Non-specific" msgstr "No especificado" @@ -6437,8 +6450,7 @@ msgid "Sex Addict" msgstr "Con adicción al sexo" #: ../../include/selectors.php:134 ../../include/channel.php:506 -#: ../../include/channel.php:507 ../../include/channel.php:514 -#: ../../Zotlabs/Widget/Affinity.php:32 +#: ../../include/channel.php:509 ../../Zotlabs/Widget/Affinity.php:32 #: ../../Zotlabs/Module/Settings/Channel.php:71 #: ../../Zotlabs/Module/Settings/Channel.php:75 #: ../../Zotlabs/Module/Settings/Channel.php:76 @@ -6547,28 +6559,28 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos que ya existen sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." -#: ../../include/group.php:265 ../../Zotlabs/Lib/Group.php:270 +#: ../../include/group.php:271 ../../Zotlabs/Lib/Group.php:270 msgid "Add new connections to this privacy group" msgstr "Añadir conexiones nuevas a este grupo de canales" -#: ../../include/group.php:299 ../../Zotlabs/Lib/AccessList.php:311 +#: ../../include/group.php:305 ../../Zotlabs/Lib/AccessList.php:311 #: ../../Zotlabs/Lib/Group.php:302 msgid "edit" msgstr "editar" -#: ../../include/group.php:322 ../../Zotlabs/Lib/Group.php:325 +#: ../../include/group.php:328 ../../Zotlabs/Lib/Group.php:325 msgid "Edit group" msgstr "Editar grupo" -#: ../../include/group.php:323 ../../Zotlabs/Lib/Group.php:326 +#: ../../include/group.php:329 ../../Zotlabs/Lib/Group.php:326 msgid "Add privacy group" msgstr "Añadir un grupo de canales" -#: ../../include/group.php:324 ../../Zotlabs/Lib/Group.php:327 +#: ../../include/group.php:330 ../../Zotlabs/Lib/Group.php:327 msgid "Channels not in any privacy group" msgstr "Sin canales en ningún grupo" -#: ../../include/group.php:326 ../../Zotlabs/Widget/Savedsearch.php:84 +#: ../../include/group.php:332 ../../Zotlabs/Widget/Savedsearch.php:84 #: ../../Zotlabs/Lib/AccessList.php:336 ../../Zotlabs/Lib/Group.php:329 msgid "add" msgstr "añadir" @@ -6618,177 +6630,199 @@ msgstr "no me gusta" msgid "dislikes" msgstr "no gusta de" -#: ../../include/items.php:1001 ../../include/items.php:1061 +#: ../../include/items.php:1037 ../../include/items.php:1097 msgid "(Unknown)" msgstr "(Desconocido)" -#: ../../include/items.php:1249 +#: ../../include/items.php:1301 msgid "Visible to anybody on the internet." msgstr "Visible para cualquiera en internet." -#: ../../include/items.php:1251 +#: ../../include/items.php:1303 msgid "Visible to you only." msgstr "Visible sólo para usted." -#: ../../include/items.php:1253 +#: ../../include/items.php:1305 msgid "Visible to anybody in this network." msgstr "Visible para cualquiera en esta red." -#: ../../include/items.php:1255 +#: ../../include/items.php:1307 msgid "Visible to anybody authenticated." msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/items.php:1257 +#: ../../include/items.php:1309 #, php-format msgid "Visible to anybody on %s." msgstr "Visible para cualquiera en %s." -#: ../../include/items.php:1259 +#: ../../include/items.php:1311 msgid "Visible to all connections." msgstr "Visible para todas las conexiones." -#: ../../include/items.php:1261 +#: ../../include/items.php:1313 msgid "Visible to approved connections." msgstr "Visible para las conexiones permitidas." -#: ../../include/items.php:1263 +#: ../../include/items.php:1315 msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:4493 ../../Zotlabs/Module/Group.php:62 +#: ../../include/items.php:4584 ../../Zotlabs/Module/Group.php:62 #: ../../Zotlabs/Module/Group.php:214 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." -#: ../../include/items.php:4509 +#: ../../include/items.php:4600 msgid "Privacy group is empty." msgstr "El grupo de canales está vacío." -#: ../../include/items.php:4516 +#: ../../include/items.php:4607 #, php-format msgid "Privacy group: %s" msgstr "Grupo de canales: %s" -#: ../../include/items.php:4526 ../../Zotlabs/Module/Connedit.php:860 +#: ../../include/items.php:4617 ../../Zotlabs/Module/Connedit.php:860 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../include/items.php:4528 +#: ../../include/items.php:4619 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/items.php:4875 ../../Zotlabs/Module/Cover_photo.php:297 +#: ../../include/items.php:4965 ../../Zotlabs/Module/Cover_photo.php:297 msgid "female" msgstr "mujer" -#: ../../include/items.php:4876 ../../Zotlabs/Module/Cover_photo.php:298 +#: ../../include/items.php:4966 ../../Zotlabs/Module/Cover_photo.php:298 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4877 ../../Zotlabs/Module/Cover_photo.php:299 +#: ../../include/items.php:4967 ../../Zotlabs/Module/Cover_photo.php:299 msgid "male" msgstr "hombre" -#: ../../include/items.php:4878 ../../Zotlabs/Module/Cover_photo.php:300 +#: ../../include/items.php:4968 ../../Zotlabs/Module/Cover_photo.php:300 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4880 ../../Zotlabs/Module/Cover_photo.php:302 +#: ../../include/items.php:4970 ../../Zotlabs/Module/Cover_photo.php:302 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4882 +#: ../../include/items.php:4972 msgid "profile photo" msgstr "foto del perfil" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 #, php-format msgid "[Edited %s]" msgstr "[se ha editado %s]" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 msgctxt "edit_activity" msgid "Post" msgstr "Publicar" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 msgctxt "edit_activity" msgid "Comment" msgstr "Comentar" #: ../../include/account.php:38 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" +msgid "The provided email address is not valid" +msgstr "La dirección de correo electrónico proporcionada no es válida" #: ../../include/account.php:40 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." +msgid "The provided email domain is not among those allowed on this site" +msgstr "El dominio de correo electrónico proporcionado no está entre los permitidos en este sitio" -#: ../../include/account.php:46 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." +#: ../../include/account.php:51 +msgid "The provided email address is already registered at this site" +msgstr "La dirección de correo electrónico proporcionada ya está registrada en este sitio" -#: ../../include/account.php:78 +#: ../../include/account.php:88 msgid "An invitation is required." msgstr "Es obligatorio que le inviten." -#: ../../include/account.php:82 +#: ../../include/account.php:97 msgid "Invitation could not be verified." msgstr "No se ha podido verificar su invitación." -#: ../../include/account.php:158 +#: ../../include/account.php:185 msgid "Please enter the required information." msgstr "Por favor introduzca la información requerida." -#: ../../include/account.php:225 +#: ../../include/account.php:252 ../../include/account.php:360 msgid "Failed to store account information." msgstr "La información de la cuenta no se ha podido guardar." -#: ../../include/account.php:313 +#: ../../include/account.php:429 ../../include/account.php:497 +#: ../../Zotlabs/Module/Register.php:352 #, php-format msgid "Registration confirmation for %s" msgstr "Confirmación de registro para %s" -#: ../../include/account.php:382 +#: ../../include/account.php:572 #, php-format msgid "Registration request at %s" msgstr "Solicitud de registro en %s" -#: ../../include/account.php:404 +#: ../../include/account.php:594 msgid "your registration password" msgstr "su contraseña de registro" -#: ../../include/account.php:410 ../../include/account.php:473 +#: ../../include/account.php:600 ../../include/account.php:689 #, php-format msgid "Registration details for %s" msgstr "Detalles del registro de %s" -#: ../../include/account.php:484 +#: ../../include/account.php:700 msgid "Account approved." msgstr "Cuenta aprobada." -#: ../../include/account.php:524 +#: ../../include/account.php:756 #, php-format msgid "Registration revoked for %s" msgstr "Registro revocado para %s" -#: ../../include/account.php:807 ../../include/account.php:809 +#: ../../include/account.php:763 +#, php-format +msgid "Could not revoke registration for %s" +msgstr "No se ha podido revocar el registro de %s" + +#: ../../include/account.php:1179 ../../include/account.php:1181 msgid "Click here to upgrade." msgstr "Pulse aquí para actualizar" -#: ../../include/account.php:815 +#: ../../include/account.php:1187 msgid "This action exceeds the limits set by your subscription plan." msgstr "Esta acción supera los límites establecidos por su plan de suscripción " -#: ../../include/account.php:820 +#: ../../include/account.php:1192 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../include/photo/photo_driver.php:434 +#: ../../include/account.php:1252 +msgid "open" +msgstr "abierto" + +#: ../../include/account.php:1252 +msgid "closed" +msgstr "cerrado" + +#: ../../include/account.php:1259 +msgid "Registration is currently" +msgstr "El registro está actualmente " + +#: ../../include/account.php:1268 +msgid "please come back" +msgstr "por favor, vuelva" + +#: ../../include/photo/photo_driver.php:435 #: ../../Zotlabs/Module/Profile_photo.php:147 #: ../../Zotlabs/Module/Profile_photo.php:284 msgid "Profile Photos" @@ -6871,8 +6905,8 @@ msgstr "%sha compartido un/una %scon usted" msgid "%1$s's bookmarks" msgstr "Marcadores de %1$s" -#: ../../include/menu.php:120 ../../include/channel.php:1539 -#: ../../include/channel.php:1543 ../../Zotlabs/Widget/Cdav.php:138 +#: ../../include/menu.php:120 ../../include/channel.php:1563 +#: ../../include/channel.php:1567 ../../Zotlabs/Widget/Cdav.php:138 #: ../../Zotlabs/Widget/Cdav.php:175 ../../Zotlabs/Module/Article_edit.php:98 #: ../../Zotlabs/Module/Group.php:253 ../../Zotlabs/Module/Card_edit.php:99 #: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Editwebpage.php:142 @@ -6884,84 +6918,84 @@ msgstr "Marcadores de %1$s" #: ../../Zotlabs/Module/Connections.php:363 #: ../../Zotlabs/Module/Connections.php:383 ../../Zotlabs/Module/Menu.php:176 #: ../../Zotlabs/Module/Oauth2.php:194 ../../Zotlabs/Module/Thing.php:268 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Wiki.php:384 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 #: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Lib/Apps.php:557 #: ../../Zotlabs/Lib/ThreadItem.php:149 msgid "Edit" msgstr "Editar" -#: ../../include/bbcode.php:221 ../../include/bbcode.php:916 -#: ../../include/bbcode.php:1494 ../../include/bbcode.php:1502 +#: ../../include/bbcode.php:233 ../../include/bbcode.php:928 +#: ../../include/bbcode.php:1525 ../../include/bbcode.php:1533 msgid "Image/photo" msgstr "Imagen/foto" -#: ../../include/bbcode.php:268 ../../include/bbcode.php:1519 +#: ../../include/bbcode.php:280 ../../include/bbcode.php:1550 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/bbcode.php:322 +#: ../../include/bbcode.php:334 #, php-format msgid "Install %1$s element %2$s" msgstr "Instalar el elemento de%1$s%2$s" -#: ../../include/bbcode.php:326 +#: ../../include/bbcode.php:338 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "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:336 ../../Zotlabs/Module/Impel.php:43 +#: ../../include/bbcode.php:348 ../../Zotlabs/Module/Impel.php:43 msgid "webpage" msgstr "página web" -#: ../../include/bbcode.php:339 ../../Zotlabs/Module/Impel.php:53 +#: ../../include/bbcode.php:351 ../../Zotlabs/Module/Impel.php:53 msgid "layout" msgstr "plantilla" -#: ../../include/bbcode.php:342 ../../Zotlabs/Module/Impel.php:48 +#: ../../include/bbcode.php:354 ../../Zotlabs/Module/Impel.php:48 msgid "block" msgstr "bloque" -#: ../../include/bbcode.php:345 ../../Zotlabs/Module/Impel.php:60 +#: ../../include/bbcode.php:357 ../../Zotlabs/Module/Impel.php:60 msgid "menu" msgstr "menú" -#: ../../include/bbcode.php:539 +#: ../../include/bbcode.php:551 msgid "card" msgstr "ficha" -#: ../../include/bbcode.php:541 +#: ../../include/bbcode.php:553 msgid "article" msgstr "el artículo" -#: ../../include/bbcode.php:547 ../../include/markdown.php:202 +#: ../../include/bbcode.php:559 ../../include/markdown.php:202 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escribió %2$s siguiente %3$s" -#: ../../include/bbcode.php:624 ../../include/bbcode.php:632 +#: ../../include/bbcode.php:636 ../../include/bbcode.php:644 msgid "Click to open/close" msgstr "Pulsar para abrir/cerrar" -#: ../../include/bbcode.php:632 ../../include/markdown.php:255 +#: ../../include/bbcode.php:644 ../../include/markdown.php:255 msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:645 +#: ../../include/bbcode.php:657 msgid "View article" msgstr "Ver el artículo" -#: ../../include/bbcode.php:645 +#: ../../include/bbcode.php:657 msgid "View summary" msgstr "Ver sumario" -#: ../../include/bbcode.php:1038 ../../include/bbcode.php:1195 -#: ../../Zotlabs/Lib/NativeWikiPage.php:605 +#: ../../include/bbcode.php:1050 ../../include/bbcode.php:1217 +#: ../../Zotlabs/Lib/NativeWikiPage.php:618 msgid "Different viewers will see this text differently" msgstr "Visitantes diferentes verán este texto de forma distinta" -#: ../../include/bbcode.php:1482 +#: ../../include/bbcode.php:1501 msgid "$1 wrote:" msgstr "$1 escribió:" @@ -6981,16 +7015,18 @@ msgstr "Nombre demasiado largo" msgid "No account identifier" msgstr "Ningún identificador de la cuenta" -#: ../../include/channel.php:212 +#: ../../include/channel.php:212 ../../Zotlabs/Module/Register.php:95 msgid "Nickname is required." msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/channel.php:226 ../../include/channel.php:707 +#: ../../include/channel.php:226 ../../include/channel.php:706 +#: ../../Zotlabs/Module/Register.php:100 #: ../../Zotlabs/Module/Changeaddr.php:46 msgid "Reserved nickname. Please choose another." msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/channel.php:231 ../../include/channel.php:712 +#: ../../include/channel.php:231 ../../include/channel.php:711 +#: ../../Zotlabs/Module/Register.php:105 #: ../../Zotlabs/Module/Changeaddr.php:51 msgid "" "Nickname has unsupported characters or is already being used on this site." @@ -7004,192 +7040,192 @@ msgstr "No ha sido posible recuperar la identidad creada" msgid "Default Profile" msgstr "Perfil principal" -#: ../../include/channel.php:640 ../../include/channel.php:729 +#: ../../include/channel.php:639 ../../include/channel.php:728 msgid "Unable to retrieve modified identity" msgstr "No se puede recuperar la identidad modficada" -#: ../../include/channel.php:1386 +#: ../../include/channel.php:1410 msgid "Requested channel is not available." msgstr "El canal solicitado no está disponible." -#: ../../include/channel.php:1532 ../../Zotlabs/Module/Profiles.php:730 +#: ../../include/channel.php:1556 ../../Zotlabs/Module/Profiles.php:730 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" -#: ../../include/channel.php:1540 +#: ../../include/channel.php:1564 msgid "Create New Profile" msgstr "Crear un nuevo perfil" -#: ../../include/channel.php:1558 ../../Zotlabs/Module/Profiles.php:822 +#: ../../include/channel.php:1582 ../../Zotlabs/Module/Profiles.php:822 msgid "Profile Image" msgstr "Imagen del perfil" -#: ../../include/channel.php:1561 +#: ../../include/channel.php:1585 msgid "Visible to everybody" msgstr "Visible para todos" -#: ../../include/channel.php:1562 ../../Zotlabs/Module/Profiles.php:727 +#: ../../include/channel.php:1586 ../../Zotlabs/Module/Profiles.php:727 #: ../../Zotlabs/Module/Profiles.php:826 msgid "Edit visibility" msgstr "Editar visibilidad" -#: ../../include/channel.php:1638 ../../include/channel.php:1766 +#: ../../include/channel.php:1662 ../../include/channel.php:1790 msgid "Gender:" msgstr "Género:" -#: ../../include/channel.php:1639 ../../include/channel.php:1810 +#: ../../include/channel.php:1663 ../../include/channel.php:1834 msgid "Status:" msgstr "Estado:" -#: ../../include/channel.php:1640 ../../include/channel.php:1834 +#: ../../include/channel.php:1664 ../../include/channel.php:1858 msgid "Homepage:" msgstr "Página personal:" -#: ../../include/channel.php:1641 +#: ../../include/channel.php:1665 msgid "Online Now" msgstr "Ahora en línea" -#: ../../include/channel.php:1694 +#: ../../include/channel.php:1718 msgid "Change your profile photo" msgstr "Cambiar su foto del perfil" -#: ../../include/channel.php:1725 +#: ../../include/channel.php:1749 msgid "Trans" msgstr "Trans" -#: ../../include/channel.php:1764 +#: ../../include/channel.php:1788 #: ../../Zotlabs/Module/Settings/Channel.php:501 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../include/channel.php:1771 +#: ../../include/channel.php:1795 msgid "Like this channel" msgstr "Me gusta este canal" -#: ../../include/channel.php:1795 +#: ../../include/channel.php:1819 msgid "j F, Y" msgstr "j F Y" -#: ../../include/channel.php:1796 +#: ../../include/channel.php:1820 msgid "j F" msgstr "j F" -#: ../../include/channel.php:1803 +#: ../../include/channel.php:1827 msgid "Birthday:" msgstr "Cumpleaños:" -#: ../../include/channel.php:1807 ../../Zotlabs/Module/Directory.php:349 +#: ../../include/channel.php:1831 ../../Zotlabs/Module/Directory.php:349 msgid "Age:" msgstr "Edad:" -#: ../../include/channel.php:1816 +#: ../../include/channel.php:1840 #, php-format msgid "for %1$d %2$s" msgstr "por %1$d %2$s" -#: ../../include/channel.php:1828 +#: ../../include/channel.php:1852 msgid "Tags:" msgstr "Etiquetas:" -#: ../../include/channel.php:1832 +#: ../../include/channel.php:1856 msgid "Sexual Preference:" msgstr "Orientación sexual:" -#: ../../include/channel.php:1836 ../../Zotlabs/Module/Directory.php:367 +#: ../../include/channel.php:1860 ../../Zotlabs/Module/Directory.php:367 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../include/channel.php:1838 +#: ../../include/channel.php:1862 msgid "Political Views:" msgstr "Posición política:" -#: ../../include/channel.php:1840 +#: ../../include/channel.php:1864 msgid "Religion:" msgstr "Religión:" -#: ../../include/channel.php:1842 ../../Zotlabs/Module/Directory.php:369 +#: ../../include/channel.php:1866 ../../Zotlabs/Module/Directory.php:369 msgid "About:" msgstr "Sobre mí:" -#: ../../include/channel.php:1844 +#: ../../include/channel.php:1868 msgid "Hobbies/Interests:" msgstr "Aficciones o intereses:" -#: ../../include/channel.php:1846 +#: ../../include/channel.php:1870 msgid "Likes:" msgstr "Me gusta:" -#: ../../include/channel.php:1848 +#: ../../include/channel.php:1872 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../include/channel.php:1850 +#: ../../include/channel.php:1874 msgid "Contact information and Social Networks:" msgstr "Información de contacto y redes sociales:" -#: ../../include/channel.php:1852 +#: ../../include/channel.php:1876 msgid "My other channels:" msgstr "Mis otros canales:" -#: ../../include/channel.php:1854 +#: ../../include/channel.php:1878 msgid "Musical interests:" msgstr "Preferencias musicales:" -#: ../../include/channel.php:1856 +#: ../../include/channel.php:1880 msgid "Books, literature:" msgstr "Libros, literatura:" -#: ../../include/channel.php:1858 +#: ../../include/channel.php:1882 msgid "Television:" msgstr "Televisión:" -#: ../../include/channel.php:1860 +#: ../../include/channel.php:1884 msgid "Film/dance/culture/entertainment:" msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/channel.php:1862 +#: ../../include/channel.php:1886 msgid "Love/Romance:" msgstr "Vida sentimental o amorosa:" -#: ../../include/channel.php:1864 +#: ../../include/channel.php:1888 msgid "Work/employment:" msgstr "Trabajo:" -#: ../../include/channel.php:1866 +#: ../../include/channel.php:1890 msgid "School/education:" msgstr "Estudios:" -#: ../../include/channel.php:1887 ../../Zotlabs/Module/Profperm.php:113 +#: ../../include/channel.php:1911 ../../Zotlabs/Module/Profperm.php:113 #: ../../Zotlabs/Lib/Apps.php:362 msgid "Profile" msgstr "Perfil" -#: ../../include/channel.php:1889 +#: ../../include/channel.php:1913 msgid "Like this thing" msgstr "Me gusta esto" -#: ../../include/channel.php:1890 ../../Zotlabs/Module/Events.php:699 +#: ../../include/channel.php:1914 ../../Zotlabs/Module/Events.php:699 msgid "Export" msgstr "Exportar" -#: ../../include/channel.php:2329 ../../Zotlabs/Module/Cover_photo.php:304 +#: ../../include/channel.php:2353 ../../Zotlabs/Module/Cover_photo.php:304 msgid "cover photo" msgstr "Imagen de portada del perfil" -#: ../../include/channel.php:2598 ../../Zotlabs/Module/Rmagic.php:96 -#: ../../boot.php:1712 +#: ../../include/channel.php:2622 ../../Zotlabs/Module/Rmagic.php:96 +#: ../../boot.php:1717 msgid "Remote Authentication" msgstr "Acceso desde su servidor" -#: ../../include/channel.php:2599 ../../Zotlabs/Module/Rmagic.php:97 +#: ../../include/channel.php:2623 ../../Zotlabs/Module/Rmagic.php:97 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../include/channel.php:2600 ../../Zotlabs/Module/Rmagic.php:98 +#: ../../include/channel.php:2624 ../../Zotlabs/Module/Rmagic.php:98 msgid "Authenticate" msgstr "Acceder" -#: ../../include/channel.php:2758 ../../Zotlabs/Module/Admin/Accounts.php:91 +#: ../../include/channel.php:2782 ../../Zotlabs/Module/Admin/Accounts.php:184 #, php-format msgid "Account '%s' deleted" msgstr "La cuenta '%s' ha sido eliminada" @@ -7199,49 +7235,49 @@ msgstr "La cuenta '%s' ha sido eliminada" msgid "Visible to your default audience" msgstr "Visible para su público predeterminado." -#: ../../include/acl_selectors.php:99 +#: ../../include/acl_selectors.php:100 msgid "Profile-Based Privacy Groups" msgstr "Grupos de privacidad basados en perfiles" -#: ../../include/acl_selectors.php:118 +#: ../../include/acl_selectors.php:119 msgid "Private Forum" msgstr "Foro privado" -#: ../../include/acl_selectors.php:124 ../../Zotlabs/Widget/Forums.php:100 -#: ../../Zotlabs/Widget/Activity_filter.php:115 +#: ../../include/acl_selectors.php:125 ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:123 #: ../../Zotlabs/Widget/Notifications.php:139 #: ../../Zotlabs/Widget/Notifications.php:140 msgid "Forums" msgstr "Foros" -#: ../../include/acl_selectors.php:135 +#: ../../include/acl_selectors.php:136 #: ../../Zotlabs/Lib/PermissionDescription.php:107 msgid "Only me" msgstr "Sólo yo" -#: ../../include/acl_selectors.php:142 +#: ../../include/acl_selectors.php:143 msgid "Share with" msgstr "Compartir con " -#: ../../include/acl_selectors.php:143 +#: ../../include/acl_selectors.php:144 msgid "Custom selection" msgstr "Selección personalizada" -#: ../../include/acl_selectors.php:145 +#: ../../include/acl_selectors.php:146 msgid "" "Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " "limit the scope of \"Allow\"." msgstr "Seleccione \"Permitir\" para permitir la visualización. \"No permitir\" le permite anular y limitar el alcance de \"Permitir\"." -#: ../../include/acl_selectors.php:146 ../../Zotlabs/Module/Authorize.php:32 +#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32 msgid "Allow" msgstr "Permitir" -#: ../../include/acl_selectors.php:147 +#: ../../include/acl_selectors.php:148 msgid "Don't allow" msgstr "No permitir" -#: ../../include/acl_selectors.php:180 +#: ../../include/acl_selectors.php:181 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
These" @@ -7440,28 +7476,28 @@ msgstr "Compartir esto" msgid "share" msgstr "compartir" -#: ../../Zotlabs/Widget/Pinned.php:123 ../../Zotlabs/Widget/Pinned.php:124 +#: ../../Zotlabs/Widget/Pinned.php:122 ../../Zotlabs/Widget/Pinned.php:123 #, php-format msgid "View %s's profile - %s" msgstr "Ver el perfil de %s - %s" -#: ../../Zotlabs/Widget/Pinned.php:128 ../../Zotlabs/Lib/ThreadItem.php:414 +#: ../../Zotlabs/Widget/Pinned.php:127 ../../Zotlabs/Lib/ThreadItem.php:414 msgid "via" msgstr "mediante" -#: ../../Zotlabs/Widget/Pinned.php:143 ../../Zotlabs/Lib/ThreadItem.php:445 +#: ../../Zotlabs/Widget/Pinned.php:141 ../../Zotlabs/Lib/ThreadItem.php:445 msgid "Attendance Options" msgstr "Opciones de participación o asistencia" -#: ../../Zotlabs/Widget/Pinned.php:144 ../../Zotlabs/Lib/ThreadItem.php:447 +#: ../../Zotlabs/Widget/Pinned.php:142 ../../Zotlabs/Lib/ThreadItem.php:447 msgid "Voting Options" msgstr "Opciones de votación" -#: ../../Zotlabs/Widget/Pinned.php:156 ../../Zotlabs/Lib/ThreadItem.php:471 +#: ../../Zotlabs/Widget/Pinned.php:154 ../../Zotlabs/Lib/ThreadItem.php:471 msgid "Pinned post" msgstr "Entradas ancladas" -#: ../../Zotlabs/Widget/Pinned.php:158 +#: ../../Zotlabs/Widget/Pinned.php:156 msgid "Don't show" msgstr "No mostrar" @@ -7487,7 +7523,7 @@ msgid "Channel Calendar" msgstr "Calendario del canal" #: ../../Zotlabs/Widget/Cdav.php:129 ../../Zotlabs/Widget/Cdav.php:143 -#: ../../Zotlabs/Module/Cdav.php:1055 +#: ../../Zotlabs/Module/Cdav.php:1056 msgid "CalDAV Calendars" msgstr "Calendarios CalDAV" @@ -7508,7 +7544,7 @@ msgid "Create new CalDAV calendar" msgstr "Crear un nuevo calendario CalDAV" #: ../../Zotlabs/Widget/Cdav.php:140 ../../Zotlabs/Widget/Cdav.php:178 -#: ../../Zotlabs/Module/Cdav.php:1059 ../../Zotlabs/Module/Cdav.php:1387 +#: ../../Zotlabs/Module/Cdav.php:1060 ../../Zotlabs/Module/Cdav.php:1388 #: ../../Zotlabs/Module/Webpages.php:254 #: ../../Zotlabs/Module/New_channel.php:189 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Profiles.php:800 @@ -7526,7 +7562,7 @@ msgstr "Nombre del calendario" msgid "Calendar Tools" msgstr "Gestión de calendarios" -#: ../../Zotlabs/Widget/Cdav.php:143 ../../Zotlabs/Module/Cdav.php:1055 +#: ../../Zotlabs/Widget/Cdav.php:143 ../../Zotlabs/Module/Cdav.php:1056 msgid "Channel Calendars" msgstr "Calendarios del canal" @@ -7611,23 +7647,23 @@ msgid "Bookmarked Chatrooms" msgstr "Salas de chat preferidas" #: ../../Zotlabs/Widget/Wiki_page_history.php:23 -#: ../../Zotlabs/Lib/NativeWikiPage.php:564 +#: ../../Zotlabs/Lib/NativeWikiPage.php:577 msgctxt "wiki_history" msgid "Message" msgstr "Mensaje" #: ../../Zotlabs/Widget/Wiki_page_history.php:24 -#: ../../Zotlabs/Lib/NativeWikiPage.php:565 +#: ../../Zotlabs/Lib/NativeWikiPage.php:578 msgid "Date" msgstr "Fecha" #: ../../Zotlabs/Widget/Wiki_page_history.php:25 -#: ../../Zotlabs/Module/Wiki.php:367 ../../Zotlabs/Lib/NativeWikiPage.php:566 +#: ../../Zotlabs/Module/Wiki.php:366 ../../Zotlabs/Lib/NativeWikiPage.php:579 msgid "Revert" msgstr "Revertir" #: ../../Zotlabs/Widget/Wiki_page_history.php:26 -#: ../../Zotlabs/Lib/NativeWikiPage.php:567 +#: ../../Zotlabs/Lib/NativeWikiPage.php:580 msgid "Compare" msgstr "Comparar" @@ -7663,13 +7699,13 @@ msgstr "Nuevo mensaje" msgid "photo/image" msgstr "foto/imagen" -#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:411 msgid "Site" msgstr "Sitio" #: ../../Zotlabs/Widget/Admin.php:23 -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin/Accounts.php:308 +#: ../../Zotlabs/Module/Admin/Accounts.php:327 #: ../../Zotlabs/Module/Admin.php:96 msgid "Accounts" msgstr "Cuentas" @@ -7680,7 +7716,7 @@ msgstr "Inscripciones de nuevos miembros pendientes de aprobación" #: ../../Zotlabs/Widget/Admin.php:24 #: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:114 +#: ../../Zotlabs/Module/Admin.php:117 msgid "Channels" msgstr "Canales" @@ -7724,85 +7760,85 @@ msgstr "Informes" msgid "Addon Features" msgstr "Características del addon" -#: ../../Zotlabs/Widget/Activity_filter.php:33 +#: ../../Zotlabs/Widget/Activity_filter.php:37 msgid "Direct Messages" msgstr "Mensajes directos" -#: ../../Zotlabs/Widget/Activity_filter.php:37 +#: ../../Zotlabs/Widget/Activity_filter.php:41 msgid "Show direct (private) messages" msgstr "Mostrar mensajes (privados) directos" -#: ../../Zotlabs/Widget/Activity_filter.php:42 +#: ../../Zotlabs/Widget/Activity_filter.php:46 msgid "Events" msgstr "Eventos" -#: ../../Zotlabs/Widget/Activity_filter.php:46 +#: ../../Zotlabs/Widget/Activity_filter.php:50 msgid "Show posts that include events" msgstr "Mostrar entradas que incluyan eventos" -#: ../../Zotlabs/Widget/Activity_filter.php:52 +#: ../../Zotlabs/Widget/Activity_filter.php:56 msgid "Polls" msgstr "Encuestas" -#: ../../Zotlabs/Widget/Activity_filter.php:56 +#: ../../Zotlabs/Widget/Activity_filter.php:60 msgid "Show posts that include polls" msgstr "Mostrar entradas que incluyan encuestas" -#: ../../Zotlabs/Widget/Activity_filter.php:77 +#: ../../Zotlabs/Widget/Activity_filter.php:83 #, php-format msgid "Show posts related to the %s privacy group" msgstr "Mostrar entradas relacionadas con el grupo %s" -#: ../../Zotlabs/Widget/Activity_filter.php:86 +#: ../../Zotlabs/Widget/Activity_filter.php:92 msgid "Show my privacy groups" msgstr "Mostrar mis grupos de canales" -#: ../../Zotlabs/Widget/Activity_filter.php:108 +#: ../../Zotlabs/Widget/Activity_filter.php:116 msgid "Show posts to this forum" msgstr "Mostrar las entradas en este foro" -#: ../../Zotlabs/Widget/Activity_filter.php:119 +#: ../../Zotlabs/Widget/Activity_filter.php:127 msgid "Show forums" msgstr "Mostrar los foros" -#: ../../Zotlabs/Widget/Activity_filter.php:133 +#: ../../Zotlabs/Widget/Activity_filter.php:141 msgid "Starred Posts" msgstr "Entradas preferidas" -#: ../../Zotlabs/Widget/Activity_filter.php:137 +#: ../../Zotlabs/Widget/Activity_filter.php:145 msgid "Show posts that I have starred" msgstr "Mostrar entradas que he señalado como preferidas" -#: ../../Zotlabs/Widget/Activity_filter.php:148 +#: ../../Zotlabs/Widget/Activity_filter.php:156 msgid "Personal Posts" msgstr "Entradas personales" -#: ../../Zotlabs/Widget/Activity_filter.php:152 +#: ../../Zotlabs/Widget/Activity_filter.php:160 msgid "Show posts that mention or involve me" msgstr "Mostrar entradas que me mencionen o involucren" -#: ../../Zotlabs/Widget/Activity_filter.php:173 +#: ../../Zotlabs/Widget/Activity_filter.php:183 #, php-format msgid "Show posts that I have filed to %s" msgstr "Mostrar las entradas que he enviado a %s" -#: ../../Zotlabs/Widget/Activity_filter.php:183 +#: ../../Zotlabs/Widget/Activity_filter.php:193 msgid "Show filed post categories" msgstr "Mostrar los temas de las entradas archivadas" -#: ../../Zotlabs/Widget/Activity_filter.php:197 +#: ../../Zotlabs/Widget/Activity_filter.php:207 msgid "Panel search" msgstr "Panel de búsqueda" -#: ../../Zotlabs/Widget/Activity_filter.php:207 +#: ../../Zotlabs/Widget/Activity_filter.php:217 msgid "Filter by name" msgstr "Filtrar por nombre" -#: ../../Zotlabs/Widget/Activity_filter.php:222 +#: ../../Zotlabs/Widget/Activity_filter.php:232 msgid "Remove active filter" msgstr "Eliminar el filtro activo" -#: ../../Zotlabs/Widget/Activity_filter.php:238 +#: ../../Zotlabs/Widget/Activity_filter.php:248 msgid "Stream Filters" msgstr "Filtros del stream" @@ -8219,29 +8255,29 @@ msgstr "No se puede copiar la carpeta en sí misma." msgid "Can not move folder \"%s\" into itself." msgstr "No se puede mover la carpeta\"%s\" en sí misma." -#: ../../Zotlabs/Module/Network.php:105 +#: ../../Zotlabs/Module/Network.php:107 msgid "No such group" msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Network.php:152 +#: ../../Zotlabs/Module/Network.php:156 msgid "No such channel" msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Network.php:164 ../../Zotlabs/Module/Channel.php:221 +#: ../../Zotlabs/Module/Network.php:168 ../../Zotlabs/Module/Channel.php:221 msgid "Search Results For:" msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Network.php:205 ../../Zotlabs/Module/Channel.php:256 +#: ../../Zotlabs/Module/Network.php:209 ../../Zotlabs/Module/Channel.php:256 #: ../../Zotlabs/Module/Hq.php:125 ../../Zotlabs/Module/Pubstream.php:95 #: ../../Zotlabs/Module/Display.php:76 msgid "Reset form" msgstr "Reiniciar el formulario" -#: ../../Zotlabs/Module/Network.php:239 +#: ../../Zotlabs/Module/Network.php:243 msgid "Privacy group is empty" msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Network.php:249 +#: ../../Zotlabs/Module/Network.php:253 msgid "Privacy group: " msgstr "Grupo de canales: " @@ -8278,7 +8314,7 @@ msgid "" msgstr "Utilice este formulario para importar entradas y contenido desde un archivo de exportación." #: ../../Zotlabs/Module/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:629 +#: ../../Zotlabs/Module/Import.php:630 msgid "File to Upload" msgstr "Fichero para subir" @@ -8291,42 +8327,42 @@ 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:622 +#: ../../Zotlabs/Module/Import.php:623 msgid "You must be logged in to use this feature." msgstr "Debe estar registrado para poder usar esta funcionalidad." -#: ../../Zotlabs/Module/Import.php:627 +#: ../../Zotlabs/Module/Import.php:628 msgid "Import Channel" msgstr "Importar canal" -#: ../../Zotlabs/Module/Import.php:628 +#: ../../Zotlabs/Module/Import.php:629 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:630 +#: ../../Zotlabs/Module/Import.php:631 msgid "Or provide the old server/hub details" msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Import.php:632 +#: ../../Zotlabs/Module/Import.php:633 msgid "Your old identity address (xyz@example.com)" msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Import.php:633 +#: ../../Zotlabs/Module/Import.php:634 msgid "Your old login email address" msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Import.php:634 +#: ../../Zotlabs/Module/Import.php:635 msgid "Your old login password" msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Import.php:635 +#: ../../Zotlabs/Module/Import.php:636 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:637 +#: ../../Zotlabs/Module/Import.php:638 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" @@ -8334,26 +8370,26 @@ 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:639 +#: ../../Zotlabs/Module/Import.php:640 msgid "Make this hub my primary location" msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Import.php:641 msgid "Move this channel (disable all previous locations)" msgstr "Mover este canal (desactivar todas las ubicaciones anteriores)" -#: ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Import.php:642 msgid "Use this channel nickname instead of the one provided" msgstr "Usa este alias de canal en lugar del que se proporciona" -#: ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Import.php:642 msgid "" "Leave blank to keep your existing channel nickname. You will be randomly " "assigned a similar nickname if either name is already allocated on this " "site." msgstr "Dejar en blanco para mantener su alias de canal . Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio." -#: ../../Zotlabs/Module/Import.php:643 +#: ../../Zotlabs/Module/Import.php:644 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." @@ -8380,146 +8416,150 @@ msgstr "php util/z6convert.php" msgid "from the terminal." msgstr "desde la terminal." -#: ../../Zotlabs/Module/Register.php:52 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." +#: ../../Zotlabs/Module/Register.php:112 +msgid "Email address required" +msgstr "Dirección de correo electrónico requerida" -#: ../../Zotlabs/Module/Register.php:58 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." +#: ../../Zotlabs/Module/Register.php:153 +msgid "No password provided" +msgstr "No se ha proporcionado la contraseña" -#: ../../Zotlabs/Module/Register.php:92 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." +#: ../../Zotlabs/Module/Register.php:176 +msgid "Terms of Service not accepted" +msgstr "No se han aceptado los Términos del servicio" -#: ../../Zotlabs/Module/Register.php:135 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registro exitoso. Continúe creando tu primer canal..." +#: ../../Zotlabs/Module/Register.php:238 +msgid "Invitation code succesfully applied" +msgstr "El código de invitación se ha aplicado con éxito" -#: ../../Zotlabs/Module/Register.php:138 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." +#: ../../Zotlabs/Module/Register.php:258 +msgid "Invitation not in time or too late" +msgstr "La invitación no llega a tiempo o llega demasiado tarde" -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." +#: ../../Zotlabs/Module/Register.php:264 +msgid "Invitation email failed" +msgstr "Error en el correo electrónico de invitación" + +#: ../../Zotlabs/Module/Register.php:272 +msgid "Invitation code failed" +msgstr "Código de invitación fallido" + +#: ../../Zotlabs/Module/Register.php:279 +msgid "Invitations are not available" +msgstr "No hay invitaciones disponibles" + +#: ../../Zotlabs/Module/Register.php:305 +msgid "Email address already in use" +msgstr "La dirección de correo electrónico ya está en uso" -#: ../../Zotlabs/Module/Register.php:148 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." +#: ../../Zotlabs/Module/Register.php:315 +msgid "Registration on this hub is by invitation only" +msgstr "El registro en este hub solo es posible por invitación" -#: ../../Zotlabs/Module/Register.php:195 +#: ../../Zotlabs/Module/Register.php:423 +msgid "New register request" +msgstr "Nueva solicitud de registro" + +#: ../../Zotlabs/Module/Register.php:441 +msgid "Error creating dId A" +msgstr "Error al crear dId A" + +#: ../../Zotlabs/Module/Register.php:459 msgid "Registration on this hub is disabled." msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Register.php:468 msgid "Registration on this hub is by approval only." msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../Zotlabs/Module/Register.php:205 ../../Zotlabs/Module/Register.php:214 -msgid "Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." +#: ../../Zotlabs/Module/Register.php:469 +msgid "Register at another affiliated hub in case when prefered" +msgstr "Regístrese en otro hub afiliado en caso de que lo prefiera" -#: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/Register.php:482 msgid "Registration on this hub is by invitation only." msgstr "La inscripción en este hub es sólo posible por invitación." -#: ../../Zotlabs/Module/Register.php:224 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." +#: ../../Zotlabs/Module/Register.php:483 +msgid "Register at another affiliated hub" +msgstr "Regístrese en otro hub afiliado" -#: ../../Zotlabs/Module/Register.php:239 ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Register.php:497 ../../Zotlabs/Module/Siteinfo.php:28 msgid "Terms of Service" msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:503 #, php-format msgid "I accept the %s for this website" msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/Register.php:510 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" -#: ../../Zotlabs/Module/Register.php:257 +#: ../../Zotlabs/Module/Register.php:520 msgid "Your email address" msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Register.php:258 +#: ../../Zotlabs/Module/Register.php:522 ../../Zotlabs/Module/Oauth.php:117 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +msgid "Optional" +msgstr "Opcional" + +#: ../../Zotlabs/Module/Register.php:527 msgid "Choose a password" msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Register.php:259 +#: ../../Zotlabs/Module/Register.php:528 msgid "Please re-enter your password" msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Register.php:260 +#: ../../Zotlabs/Module/Register.php:530 msgid "Please enter your invitation code" msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Register.php:261 -msgid "Your Name" +#: ../../Zotlabs/Module/Register.php:532 +msgid "Your name" msgstr "Su nombre" -#: ../../Zotlabs/Module/Register.php:261 -msgid "Real names are preferred." -msgstr "Se prefieren los nombres reales" +#: ../../Zotlabs/Module/Register.php:532 +msgid "Real name is preferred" +msgstr "Se prefiere el nombre real" -#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/Register.php:534 #: ../../Zotlabs/Module/New_channel.php:177 msgid "Choose a short nickname" msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/Register.php:263 -#, php-format +#: ../../Zotlabs/Module/Register.php:534 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" +"Your nickname will be used to create an easy to remember channel address" +msgstr "Tu alias se utilizará para crear una dirección de canal fácil de recordar" -#: ../../Zotlabs/Module/Register.php:264 -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Register.php:538 +msgid "Why do you want to join this hub?" +msgstr "¿Por qué quiere unirse a este hub?" -#: ../../Zotlabs/Module/Register.php:264 -msgid "" -"Select a channel permission role for your usage needs and privacy " -"requirements." -msgstr "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad." +#: ../../Zotlabs/Module/Register.php:538 +msgid "This will help to review your registration" +msgstr "Esto ayudará a revisar su registro" -#: ../../Zotlabs/Module/Register.php:264 -#: ../../Zotlabs/Module/New_channel.php:178 -msgid "Read more about channel permission roles" -msgstr "Leer más sobre los roles y permisos" - -#: ../../Zotlabs/Module/Register.php:265 -msgid "no" -msgstr "no" - -#: ../../Zotlabs/Module/Register.php:265 -msgid "yes" -msgstr "sí" - -#: ../../Zotlabs/Module/Register.php:277 -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Register.php:544 +#: ../../Zotlabs/Module/Admin/Site.php:413 msgid "Registration" msgstr "Registro" -#: ../../Zotlabs/Module/Register.php:294 +#: ../../Zotlabs/Module/Register.php:552 +msgid "I have an invite code" +msgstr "Tengo un código de invitación" + +#: ../../Zotlabs/Module/Register.php:599 msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones." +"This site has exceeded the number of allowed daily account registrations." +msgstr "Este sitio ha superado el número permitido de registros diarios de cuentas." -#: ../../Zotlabs/Module/Search.php:22 +#: ../../Zotlabs/Module/Search.php:21 #: ../../Zotlabs/Module/Viewconnections.php:23 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Display.php:26 #: ../../Zotlabs/Module/Directory.php:73 ../../Zotlabs/Module/Directory.php:78 @@ -8527,425 +8567,425 @@ msgstr "Este sitio requiere verificación por correo electrónico. Después de c msgid "Public access denied." msgstr "Acceso público denegado." -#: ../../Zotlabs/Module/Search.php:251 +#: ../../Zotlabs/Module/Search.php:250 #, php-format msgid "Items tagged with: %s" msgstr "elementos etiquetados con: %s" -#: ../../Zotlabs/Module/Search.php:253 +#: ../../Zotlabs/Module/Search.php:252 #, php-format msgid "Search results for: %s" msgstr "Resultados de la búsqueda para: %s" -#: ../../Zotlabs/Module/Setup.php:167 +#: ../../Zotlabs/Module/Setup.php:169 msgid "$Projectname Server - Setup" msgstr "Servidor $Projectname - Instalación" -#: ../../Zotlabs/Module/Setup.php:171 +#: ../../Zotlabs/Module/Setup.php:173 msgid "Could not connect to database." msgstr "No se ha podido conectar a la base de datos." -#: ../../Zotlabs/Module/Setup.php:175 +#: ../../Zotlabs/Module/Setup.php:177 msgid "" "Could not connect to specified site URL. Possible SSL certificate or DNS " "issue." msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." -#: ../../Zotlabs/Module/Setup.php:182 +#: ../../Zotlabs/Module/Setup.php:184 msgid "Could not create table." msgstr "No se puede crear la tabla." -#: ../../Zotlabs/Module/Setup.php:188 +#: ../../Zotlabs/Module/Setup.php:190 msgid "Your site database has been installed." msgstr "La base de datos del sitio ha sido instalada." -#: ../../Zotlabs/Module/Setup.php:194 +#: ../../Zotlabs/Module/Setup.php:196 msgid "" "You may need to import the file \"install/schema_xxx.sql\" manually using a " "database client." msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." -#: ../../Zotlabs/Module/Setup.php:195 ../../Zotlabs/Module/Setup.php:259 -#: ../../Zotlabs/Module/Setup.php:766 +#: ../../Zotlabs/Module/Setup.php:197 ../../Zotlabs/Module/Setup.php:261 +#: ../../Zotlabs/Module/Setup.php:768 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Setup.php:256 +#: ../../Zotlabs/Module/Setup.php:258 msgid "System check" msgstr "Verificación del sistema" -#: ../../Zotlabs/Module/Setup.php:260 ../../Zotlabs/Module/Cdav.php:1036 +#: ../../Zotlabs/Module/Setup.php:262 ../../Zotlabs/Module/Cdav.php:1037 #: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Events.php:707 #: ../../Zotlabs/Module/Cal.php:204 ../../Zotlabs/Module/Photos.php:956 msgid "Next" msgstr "Siguiente" -#: ../../Zotlabs/Module/Setup.php:261 +#: ../../Zotlabs/Module/Setup.php:263 msgid "Check again" msgstr "Verificar de nuevo" -#: ../../Zotlabs/Module/Setup.php:282 +#: ../../Zotlabs/Module/Setup.php:284 msgid "Database connection" msgstr "Conexión a la base de datos" -#: ../../Zotlabs/Module/Setup.php:283 +#: ../../Zotlabs/Module/Setup.php:285 msgid "" "In order to install $Projectname we need to know how to connect to your " "database." msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." -#: ../../Zotlabs/Module/Setup.php:284 +#: ../../Zotlabs/Module/Setup.php:286 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." -#: ../../Zotlabs/Module/Setup.php:285 +#: ../../Zotlabs/Module/Setup.php:287 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." -#: ../../Zotlabs/Module/Setup.php:289 +#: ../../Zotlabs/Module/Setup.php:291 msgid "Database Server Name" msgstr "Nombre del servidor de base de datos" -#: ../../Zotlabs/Module/Setup.php:289 +#: ../../Zotlabs/Module/Setup.php:291 msgid "Default is 127.0.0.1" msgstr "De forma predeterminada es 127.0.0.1" -#: ../../Zotlabs/Module/Setup.php:290 +#: ../../Zotlabs/Module/Setup.php:292 msgid "Database Port" msgstr "Puerto de la base de datos" -#: ../../Zotlabs/Module/Setup.php:290 +#: ../../Zotlabs/Module/Setup.php:292 msgid "Communication port number - use 0 for default" msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" -#: ../../Zotlabs/Module/Setup.php:291 +#: ../../Zotlabs/Module/Setup.php:293 msgid "Database Login Name" msgstr "Usuario de la base de datos" -#: ../../Zotlabs/Module/Setup.php:292 +#: ../../Zotlabs/Module/Setup.php:294 msgid "Database Login Password" msgstr "Contraseña de acceso a la base de datos" -#: ../../Zotlabs/Module/Setup.php:293 +#: ../../Zotlabs/Module/Setup.php:295 msgid "Database Name" msgstr "Nombre de la base de datos" -#: ../../Zotlabs/Module/Setup.php:294 +#: ../../Zotlabs/Module/Setup.php:296 msgid "Database Type" msgstr "Tipo de base de datos" -#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "Site administrator email address" msgstr "Dirección de correo electrónico del administrador del sitio" -#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." -#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Website URL" msgstr "Dirección del sitio web" -#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Please use SSL (https) URL if available." msgstr "Por favor, use SSL (https) si está disponible." -#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:340 +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:342 msgid "Please select a default timezone for your website" msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" -#: ../../Zotlabs/Module/Setup.php:325 +#: ../../Zotlabs/Module/Setup.php:327 msgid "Site settings" msgstr "Ajustes del sitio" -#: ../../Zotlabs/Module/Setup.php:379 +#: ../../Zotlabs/Module/Setup.php:381 msgid "PHP version 7.1 or greater is required." msgstr "Se requiere la versión 7.1 o superior de PHP." -#: ../../Zotlabs/Module/Setup.php:380 +#: ../../Zotlabs/Module/Setup.php:382 msgid "PHP version" msgstr "Versión de PHP" -#: ../../Zotlabs/Module/Setup.php:396 +#: ../../Zotlabs/Module/Setup.php:398 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." -#: ../../Zotlabs/Module/Setup.php:397 +#: ../../Zotlabs/Module/Setup.php:399 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron." msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." -#: ../../Zotlabs/Module/Setup.php:401 +#: ../../Zotlabs/Module/Setup.php:403 msgid "PHP executable path" msgstr "Ruta del ejecutable PHP" -#: ../../Zotlabs/Module/Setup.php:401 +#: ../../Zotlabs/Module/Setup.php:403 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." -#: ../../Zotlabs/Module/Setup.php:406 +#: ../../Zotlabs/Module/Setup.php:408 msgid "Command line PHP" msgstr "PHP en línea de comandos" -#: ../../Zotlabs/Module/Setup.php:416 +#: ../../Zotlabs/Module/Setup.php:418 msgid "" "Unable to check command line PHP, as shell_exec() is disabled. This is " "required." msgstr "No se puede comprobar la línea de comandos PHP, ya que shell_exec() está deshabilitado. Es necesario que esté activado." -#: ../../Zotlabs/Module/Setup.php:420 +#: ../../Zotlabs/Module/Setup.php:422 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." -#: ../../Zotlabs/Module/Setup.php:421 +#: ../../Zotlabs/Module/Setup.php:423 msgid "This is required for message delivery to work." msgstr "Esto es necesario para que funcione la transmisión de mensajes." -#: ../../Zotlabs/Module/Setup.php:424 +#: ../../Zotlabs/Module/Setup.php:426 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Setup.php:444 +#: ../../Zotlabs/Module/Setup.php:446 msgid "" "This is not sufficient to upload larger images or files. You should be able " "to upload at least 4 MB at once." msgstr "Esto no es suficiente para subir imágenes o archivos más grandes. Usted debe ser capaz de subir al menos 4 MB a la vez." -#: ../../Zotlabs/Module/Setup.php:446 +#: ../../Zotlabs/Module/Setup.php:448 #, php-format msgid "" "Your max allowed total upload size is set to %s. Maximum size of one file to" " upload is set to %s. You are allowed to upload up to %d files at once." msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." -#: ../../Zotlabs/Module/Setup.php:452 +#: ../../Zotlabs/Module/Setup.php:454 msgid "You can adjust these settings in the server php.ini file." msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." -#: ../../Zotlabs/Module/Setup.php:454 +#: ../../Zotlabs/Module/Setup.php:456 msgid "PHP upload limits" msgstr "Límites PHP de subida" -#: ../../Zotlabs/Module/Setup.php:477 +#: ../../Zotlabs/Module/Setup.php:479 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." -#: ../../Zotlabs/Module/Setup.php:478 +#: ../../Zotlabs/Module/Setup.php:480 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Setup.php:481 +#: ../../Zotlabs/Module/Setup.php:483 msgid "Generate encryption keys" msgstr "Generar claves de cifrado" -#: ../../Zotlabs/Module/Setup.php:498 +#: ../../Zotlabs/Module/Setup.php:500 msgid "libCurl PHP module" msgstr "módulo libCurl PHP" -#: ../../Zotlabs/Module/Setup.php:499 +#: ../../Zotlabs/Module/Setup.php:501 msgid "GD graphics PHP module" msgstr "módulo PHP GD graphics" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:502 msgid "OpenSSL PHP module" msgstr "módulo PHP OpenSSL" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:503 msgid "PDO database PHP module" msgstr "Módulo PHP de la base de datos PDO " -#: ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:504 msgid "mb_string PHP module" msgstr "módulo PHP mb_string" -#: ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:505 msgid "xml PHP module" msgstr "módulo PHP xml" -#: ../../Zotlabs/Module/Setup.php:504 +#: ../../Zotlabs/Module/Setup.php:506 msgid "zip PHP module" msgstr "Módulo zip PHP" -#: ../../Zotlabs/Module/Setup.php:508 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:510 ../../Zotlabs/Module/Setup.php:512 msgid "Apache mod_rewrite module" msgstr "módulo Apache mod_rewrite " -#: ../../Zotlabs/Module/Setup.php:508 +#: ../../Zotlabs/Module/Setup.php:510 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:517 +#: ../../Zotlabs/Module/Setup.php:516 ../../Zotlabs/Module/Setup.php:519 msgid "exec" msgstr "ejecutable" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:516 msgid "" "Error: exec is required but is either not installed or has been disabled in " "php.ini" msgstr "Error: se necesita un ejecutable pero o no se instaló o está deshabilitado en php.ini" -#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 ../../Zotlabs/Module/Setup.php:525 msgid "shell_exec" msgstr "shell_exec" -#: ../../Zotlabs/Module/Setup.php:520 +#: ../../Zotlabs/Module/Setup.php:522 msgid "" "Error: shell_exec is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: se necesita shell_exec pero o no se instaló o está deshabilitado en php.ini" -#: ../../Zotlabs/Module/Setup.php:528 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:532 +#: ../../Zotlabs/Module/Setup.php:534 msgid "" "Error: GD PHP module with JPEG support or ImageMagick graphics library " "required but not installed." msgstr "Error: Se requiere el módulo GD PHP con soporte para JPEG o la biblioteca de gráficos ImageMagick, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:536 +#: ../../Zotlabs/Module/Setup.php:538 msgid "Error: openssl PHP module required but not installed." msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:542 +#: ../../Zotlabs/Module/Setup.php:544 msgid "" "Error: PDO database PHP module missing a driver for either mysql or pgsql." msgstr "Error: El módulo PHP de la base de datos PDO carece de un controlador para mysql o pgsql." -#: ../../Zotlabs/Module/Setup.php:547 +#: ../../Zotlabs/Module/Setup.php:549 msgid "Error: PDO database PHP module required but not installed." msgstr "Error: se necesita el módulo PHP de la base de datos PDO, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:551 +#: ../../Zotlabs/Module/Setup.php:553 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:557 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:561 msgid "Error: zip PHP module required but not installed." msgstr "Error: se requiere el módulo zip PHP pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:578 ../../Zotlabs/Module/Setup.php:587 +#: ../../Zotlabs/Module/Setup.php:580 ../../Zotlabs/Module/Setup.php:589 msgid ".htconfig.php is writable" msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:585 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Setup.php:584 +#: ../../Zotlabs/Module/Setup.php:586 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../Zotlabs/Module/Setup.php:585 +#: ../../Zotlabs/Module/Setup.php:587 msgid "Please see install/INSTALL.txt for additional information." msgstr "Por favor, consulte install/INSTALL.txt para más información." -#: ../../Zotlabs/Module/Setup.php:601 +#: ../../Zotlabs/Module/Setup.php:603 msgid "" "This software uses the Smarty3 template engine to render its web views. " "Smarty3 compiles templates to PHP to speed up rendering." msgstr "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización." -#: ../../Zotlabs/Module/Setup.php:602 +#: ../../Zotlabs/Module/Setup.php:604 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../Zotlabs/Module/Setup.php:603 ../../Zotlabs/Module/Setup.php:624 +#: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../Zotlabs/Module/Setup.php:604 +#: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "" "Note: as a security measure, you should give the web server write access to " "%s only--not the template files (.tpl) that it contains." msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../Zotlabs/Module/Setup.php:607 +#: ../../Zotlabs/Module/Setup.php:609 #, php-format msgid "%s is writable" msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:623 +#: ../../Zotlabs/Module/Setup.php:625 msgid "" "This software uses the store directory to save uploaded files. The web " "server needs to have write access to the store directory under the top level" " web folder" msgstr "Este software utiliza el directorio de almacenamiento para guardar los ficheros subidos. El servidor web debe tener acceso de escritura a este directorio en la carpeta de nivel superior" -#: ../../Zotlabs/Module/Setup.php:627 +#: ../../Zotlabs/Module/Setup.php:629 msgid "store is writable" msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../Zotlabs/Module/Setup.php:660 +#: ../../Zotlabs/Module/Setup.php:662 msgid "" "If you have https access to your website or allow connections to TCP port " "443 (the https: port), you MUST use a browser-valid certificate. You MUST " "NOT use self-signed certificates!" msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:663 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Se ha incorporado esta restricción para evitar que sus entradas públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Setup.php:662 +#: ../../Zotlabs/Module/Setup.php:664 msgid "" "If your certificate is not recognized, members of other sites (who may " "themselves have valid certificates) will get a warning message on their own " "site complaining about security issues." msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../Zotlabs/Module/Setup.php:663 +#: ../../Zotlabs/Module/Setup.php:665 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Setup.php:664 +#: ../../Zotlabs/Module/Setup.php:666 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../Zotlabs/Module/Setup.php:665 +#: ../../Zotlabs/Module/Setup.php:667 msgid "" "If you are confident that the certificate is valid and signed by a trusted " "authority, check to see if you have failed to install an intermediate cert. " @@ -8953,32 +8993,32 @@ msgid "" "server communications." msgstr "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor." -#: ../../Zotlabs/Module/Setup.php:667 +#: ../../Zotlabs/Module/Setup.php:669 msgid "SSL certificate validation" msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Setup.php:673 +#: ../../Zotlabs/Module/Setup.php:675 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Module/Setup.php:676 +#: ../../Zotlabs/Module/Setup.php:678 msgid "Url rewrite is working" msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Setup.php:689 +#: ../../Zotlabs/Module/Setup.php:691 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../Zotlabs/Module/Setup.php:764 +#: ../../Zotlabs/Module/Setup.php:766 msgid "

What next?

" msgstr "

¿Qué sigue?

" -#: ../../Zotlabs/Module/Setup.php:765 +#: ../../Zotlabs/Module/Setup.php:767 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -9032,18 +9072,18 @@ msgstr "Valorar" #: ../../Zotlabs/Module/Pubsites.php:61 ../../Zotlabs/Module/Webpages.php:261 #: ../../Zotlabs/Module/Events.php:702 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Wiki.php:213 ../../Zotlabs/Module/Wiki.php:409 +#: ../../Zotlabs/Module/Wiki.php:212 ../../Zotlabs/Module/Wiki.php:408 #: ../../Zotlabs/Module/Layouts.php:198 msgid "View" msgstr "Ver" #: ../../Zotlabs/Module/Channel.php:131 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:60 +#: ../../Zotlabs/Module/Profile.php:62 msgid "Posts and comments" msgstr "Publicaciones y comentarios" #: ../../Zotlabs/Module/Channel.php:138 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:67 +#: ../../Zotlabs/Module/Profile.php:69 msgid "Only posts" msgstr "Solo publicaciones" @@ -9051,7 +9091,7 @@ msgstr "Solo publicaciones" msgid "Insufficient permissions. Request redirected to profile page." msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../Zotlabs/Module/Channel.php:482 ../../Zotlabs/Module/Display.php:362 +#: ../../Zotlabs/Module/Channel.php:483 ../../Zotlabs/Module/Display.php:354 msgid "" "You must enable javascript for your browser to be able to view this content." msgstr "Debe habilitar javascript para poder ver este contenido en su navegador." @@ -9218,7 +9258,7 @@ msgid "Key and Secret are required" msgstr "\"Key\" y \"Secret\" son obligatorios" #: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 -#: ../../Zotlabs/Module/Cdav.php:1053 ../../Zotlabs/Module/Cdav.php:1388 +#: ../../Zotlabs/Module/Cdav.php:1054 ../../Zotlabs/Module/Cdav.php:1389 #: ../../Zotlabs/Module/Admin/Addons.php:457 #: ../../Zotlabs/Module/Profiles.php:801 ../../Zotlabs/Module/Oauth2.php:58 #: ../../Zotlabs/Module/Oauth2.php:144 ../../Zotlabs/Module/Connedit.php:932 @@ -9266,11 +9306,6 @@ msgstr "URI de redirección - dejar en blanco a menos que su aplicación especí msgid "Icon url" msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Sources.php:123 -#: ../../Zotlabs/Module/Sources.php:158 -msgid "Optional" -msgstr "Opcional" - #: ../../Zotlabs/Module/Oauth.php:128 msgid "Application not found." msgstr "Aplicación no encontrada." @@ -9315,7 +9350,7 @@ msgstr "¡Bienvenido a Hubzilla!" msgid "You have got no unseen posts..." msgstr "No tiene ningún mensaje sin leer..." -#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:461 +#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:471 msgid "Unable to locate original post." msgstr "No ha sido posible encontrar la entrada original." @@ -9373,7 +9408,7 @@ msgid "No chatrooms available" msgstr "No hay salas de chat disponibles" #: ../../Zotlabs/Module/Chat.php:262 ../../Zotlabs/Module/Manage.php:145 -#: ../../Zotlabs/Module/Profiles.php:833 ../../Zotlabs/Module/Wiki.php:214 +#: ../../Zotlabs/Module/Profiles.php:833 ../../Zotlabs/Module/Wiki.php:213 msgid "Create New" msgstr "Crear" @@ -9420,7 +9455,7 @@ msgid "Delete event" msgstr "Borrar evento" #: ../../Zotlabs/Module/Channel_calendar.php:392 -#: ../../Zotlabs/Module/Cdav.php:943 ../../Zotlabs/Module/Cal.php:165 +#: ../../Zotlabs/Module/Cdav.php:944 ../../Zotlabs/Module/Cal.php:165 msgid "Link to source" msgstr "Enlace a la fuente" @@ -9520,168 +9555,168 @@ msgstr "Elegir qué desea enviar al destinatario" msgid "Make this post private" msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Cdav.php:818 ../../Zotlabs/Module/Events.php:28 +#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Events.php:28 msgid "Calendar entries imported." msgstr "Entradas de calendario importadas." -#: ../../Zotlabs/Module/Cdav.php:820 ../../Zotlabs/Module/Events.php:30 +#: ../../Zotlabs/Module/Cdav.php:821 ../../Zotlabs/Module/Events.php:30 msgid "No calendar entries found." msgstr "No se han encontrado entradas de calendario." -#: ../../Zotlabs/Module/Cdav.php:876 +#: ../../Zotlabs/Module/Cdav.php:877 msgid "CardDAV App" msgstr "App CarDav" -#: ../../Zotlabs/Module/Cdav.php:877 +#: ../../Zotlabs/Module/Cdav.php:878 msgid "CalDAV capable addressbook" msgstr "Libreta de direcciones compatible con CalDav" -#: ../../Zotlabs/Module/Cdav.php:1009 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:468 msgid "Event title" msgstr "Título del evento" -#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:474 +#: ../../Zotlabs/Module/Cdav.php:1011 ../../Zotlabs/Module/Events.php:474 msgid "Start date and time" msgstr "Fecha y hora de comienzo" -#: ../../Zotlabs/Module/Cdav.php:1011 +#: ../../Zotlabs/Module/Cdav.php:1012 msgid "End date and time" msgstr "Fecha y hora de finalización" -#: ../../Zotlabs/Module/Cdav.php:1012 ../../Zotlabs/Module/Events.php:497 +#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Events.php:497 msgid "Timezone:" msgstr "Zona horaria: " -#: ../../Zotlabs/Module/Cdav.php:1035 ../../Zotlabs/Module/Events.php:697 +#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Events.php:697 #: ../../Zotlabs/Module/Events.php:706 ../../Zotlabs/Module/Cal.php:203 #: ../../Zotlabs/Module/Photos.php:947 msgid "Previous" msgstr "Anterior" -#: ../../Zotlabs/Module/Cdav.php:1037 ../../Zotlabs/Module/Events.php:708 +#: ../../Zotlabs/Module/Cdav.php:1038 ../../Zotlabs/Module/Events.php:708 #: ../../Zotlabs/Module/Cal.php:205 msgid "Today" msgstr "Hoy" -#: ../../Zotlabs/Module/Cdav.php:1038 ../../Zotlabs/Module/Events.php:703 +#: ../../Zotlabs/Module/Cdav.php:1039 ../../Zotlabs/Module/Events.php:703 msgid "Month" msgstr "Mes" -#: ../../Zotlabs/Module/Cdav.php:1039 ../../Zotlabs/Module/Events.php:704 +#: ../../Zotlabs/Module/Cdav.php:1040 ../../Zotlabs/Module/Events.php:704 msgid "Week" msgstr "Semana" -#: ../../Zotlabs/Module/Cdav.php:1040 ../../Zotlabs/Module/Events.php:705 +#: ../../Zotlabs/Module/Cdav.php:1041 ../../Zotlabs/Module/Events.php:705 msgid "Day" msgstr "Día" -#: ../../Zotlabs/Module/Cdav.php:1041 +#: ../../Zotlabs/Module/Cdav.php:1042 msgid "List month" msgstr "Lista mensual" -#: ../../Zotlabs/Module/Cdav.php:1042 +#: ../../Zotlabs/Module/Cdav.php:1043 msgid "List week" msgstr "Lista semanal" -#: ../../Zotlabs/Module/Cdav.php:1043 +#: ../../Zotlabs/Module/Cdav.php:1044 msgid "List day" msgstr "Lista diaria" -#: ../../Zotlabs/Module/Cdav.php:1051 +#: ../../Zotlabs/Module/Cdav.php:1052 msgid "More" msgstr "Más" -#: ../../Zotlabs/Module/Cdav.php:1052 +#: ../../Zotlabs/Module/Cdav.php:1053 msgid "Less" msgstr "Menos" -#: ../../Zotlabs/Module/Cdav.php:1054 +#: ../../Zotlabs/Module/Cdav.php:1055 msgid "Select calendar" msgstr "Seleccionar un calendario" -#: ../../Zotlabs/Module/Cdav.php:1057 +#: ../../Zotlabs/Module/Cdav.php:1058 msgid "Delete all" msgstr "Eliminar todos" -#: ../../Zotlabs/Module/Cdav.php:1060 +#: ../../Zotlabs/Module/Cdav.php:1061 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:1373 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Connedit.php:917 msgid "Organisation" msgstr "Organización" -#: ../../Zotlabs/Module/Cdav.php:1375 ../../Zotlabs/Module/Profiles.php:788 +#: ../../Zotlabs/Module/Cdav.php:1376 ../../Zotlabs/Module/Profiles.php:788 #: ../../Zotlabs/Module/Connedit.php:919 msgid "Phone" msgstr "Teléfono" -#: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Profiles.php:790 #: ../../Zotlabs/Module/Connedit.php:921 msgid "Instant messenger" msgstr "Mensajería instantánea" -#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Profiles.php:791 +#: ../../Zotlabs/Module/Cdav.php:1379 ../../Zotlabs/Module/Profiles.php:791 #: ../../Zotlabs/Module/Connedit.php:922 msgid "Website" msgstr "Sitio web" -#: ../../Zotlabs/Module/Cdav.php:1379 +#: ../../Zotlabs/Module/Cdav.php:1380 #: ../../Zotlabs/Module/Admin/Channels.php:160 #: ../../Zotlabs/Module/Profiles.php:504 ../../Zotlabs/Module/Profiles.php:792 #: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Locs.php:129 msgid "Address" msgstr "Dirección" -#: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Profiles.php:793 +#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:793 #: ../../Zotlabs/Module/Connedit.php:924 msgid "Note" msgstr "Nota" -#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Profiles.php:798 #: ../../Zotlabs/Module/Connedit.php:929 msgid "Add Contact" msgstr "Añadir un contacto" -#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Module/Cdav.php:1387 ../../Zotlabs/Module/Profiles.php:799 #: ../../Zotlabs/Module/Connedit.php:930 msgid "Add Field" msgstr "Añadir un campo" -#: ../../Zotlabs/Module/Cdav.php:1391 ../../Zotlabs/Module/Connedit.php:935 +#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:935 msgid "P.O. Box" msgstr "Buzón de correos" -#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:936 +#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:936 msgid "Additional" msgstr "Adicional" -#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:937 msgid "Street" msgstr "Calle" -#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:938 +#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:938 msgid "Locality" msgstr "Localidad" -#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:939 +#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:939 msgid "Region" msgstr "Provincia, región o estado" -#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:940 +#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Connedit.php:940 msgid "ZIP Code" msgstr "Código postal" -#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Profiles.php:759 +#: ../../Zotlabs/Module/Cdav.php:1398 ../../Zotlabs/Module/Profiles.php:759 #: ../../Zotlabs/Module/Connedit.php:941 msgid "Country" msgstr "País" -#: ../../Zotlabs/Module/Cdav.php:1456 +#: ../../Zotlabs/Module/Cdav.php:1457 msgid "Default Calendar" msgstr "Calendario por defecto" -#: ../../Zotlabs/Module/Cdav.php:1467 +#: ../../Zotlabs/Module/Cdav.php:1468 msgid "Default Addressbook" msgstr "Agenda de direcciones por defecto" @@ -9699,32 +9734,32 @@ msgctxt "acl" msgid "Profile" msgstr "Perfil" -#: ../../Zotlabs/Module/Item.php:747 +#: ../../Zotlabs/Module/Item.php:757 msgid "Empty post discarded." msgstr "La entrada vacía ha sido desechada." -#: ../../Zotlabs/Module/Item.php:1181 +#: ../../Zotlabs/Module/Item.php:1189 msgid "Duplicate post suppressed." msgstr "Se ha suprimido la entrada duplicada." -#: ../../Zotlabs/Module/Item.php:1326 +#: ../../Zotlabs/Module/Item.php:1334 msgid "System error. Post not saved." msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../Zotlabs/Module/Item.php:1360 +#: ../../Zotlabs/Module/Item.php:1368 msgid "Your comment is awaiting approval." msgstr "Su comentario está pendiente de aprobación." -#: ../../Zotlabs/Module/Item.php:1490 +#: ../../Zotlabs/Module/Item.php:1498 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:1497 +#: ../../Zotlabs/Module/Item.php:1505 #, 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:1504 +#: ../../Zotlabs/Module/Item.php:1512 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Ha alcanzado su límite de %1$.0f páginas web." @@ -10073,15 +10108,11 @@ msgstr "Canal premium o restringido" msgid "Not found" msgstr "No encontrado" -#: ../../Zotlabs/Module/Cloud.php:126 -msgid "Please refresh page" -msgstr "Por favor, recargue la página" - -#: ../../Zotlabs/Module/Cloud.php:129 +#: ../../Zotlabs/Module/Cloud.php:130 msgid "Unknown error" msgstr "Error desconocido" -#: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2154 +#: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2186 #, php-format msgid "🔁 Repeated %1$s's %2$s" msgstr "🔁 Repetidos %2$sde %1$s" @@ -10125,7 +10156,7 @@ msgid "Do you authorize the app %s to access your channel data?" msgstr "¿Autoriza a la aplicación %s a acceder a los datos de su canal?" #: ../../Zotlabs/Module/Authorize.php:33 -#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Accounts.php:319 msgid "Deny" msgstr "Rechazar" @@ -10182,13 +10213,13 @@ msgstr "Instantánea de pantalla" #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 #: ../../Zotlabs/Module/Admin/Security.php:98 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Accounts.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:408 #: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Addons.php:342 #: ../../Zotlabs/Module/Admin/Addons.php:440 -#: ../../Zotlabs/Module/Admin.php:138 +#: ../../Zotlabs/Module/Admin.php:141 msgid "Administration" msgstr "Administración" @@ -10357,526 +10388,690 @@ msgstr "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso." msgid "Allow embedded (inline) PDF files" msgstr "Permitir ficheros PDF incrustados (en línea)" -#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#: ../../Zotlabs/Module/Admin/Accounts.php:128 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s cuenta bloqueada/desbloqueada" msgstr[1] "%s cuenta bloqueada/desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#: ../../Zotlabs/Module/Admin/Accounts.php:135 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s cuentas eliminadas" msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Admin/Accounts.php:80 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "Account not found" msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#: ../../Zotlabs/Module/Admin/Accounts.php:192 #, php-format msgid "Account '%s' blocked" msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#: ../../Zotlabs/Module/Admin/Accounts.php:200 #, php-format msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "seleccionar todo" +#: ../../Zotlabs/Module/Admin/Accounts.php:240 +msgid "Unverified" +msgstr "Sin verificar" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Inscripciones en espera de confirmación" +#: ../../Zotlabs/Module/Admin/Accounts.php:243 +msgid "Expired" +msgstr "Caducado/a" -#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show verified registrations" +msgstr "Mostrar registros verificados" + +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show all registrations" +msgstr "Mostrar todos los registros" + +#: ../../Zotlabs/Module/Admin/Accounts.php:312 +msgid "Select toggle" +msgstr "Seleccionar alternar" + +#: ../../Zotlabs/Module/Admin/Accounts.php:313 +msgid "Deny selected" +msgstr "Denegar seleccionado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:314 +msgid "Approve selected" +msgstr "Aprobar seleccionado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "All registrations" +msgstr "Todos los registros" + +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "Verified registrations waiting for approval" +msgstr "Registros verificados en espera de aprobación" + +#: ../../Zotlabs/Module/Admin/Accounts.php:316 msgid "Request date" msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Sin registros." +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Requests" +msgstr "Solicitudes" + +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No registrations available" +msgstr "No hay registros disponibles" -#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No verified registrations available" +msgstr "No hay registros verificados disponibles" + +#: ../../Zotlabs/Module/Admin/Accounts.php:321 #: ../../Zotlabs/Module/Connedit.php:629 msgid "Block" msgstr "Bloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Admin/Accounts.php:322 #: ../../Zotlabs/Module/Connedit.php:629 msgid "Unblock" msgstr "Desbloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Admin/Accounts.php:323 +msgid "Verified" +msgstr "Verificado/a" + +#: ../../Zotlabs/Module/Admin/Accounts.php:324 +msgid "Not yet verified" +msgstr "Aún no se ha verificado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:329 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "All Channels" +#: ../../Zotlabs/Module/Admin/Accounts.php:331 +msgid "All channels" msgstr "Todos los canales" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 +#: ../../Zotlabs/Module/Admin/Accounts.php:332 msgid "Register date" msgstr "Fecha de registro" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 +#: ../../Zotlabs/Module/Admin/Accounts.php:333 msgid "Last login" msgstr "Último acceso" -#: ../../Zotlabs/Module/Admin/Accounts.php:187 +#: ../../Zotlabs/Module/Admin/Accounts.php:334 msgid "Expires" msgstr "Caduca" -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" +#: ../../Zotlabs/Module/Admin/Accounts.php:335 +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Service class" msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Admin/Accounts.php:190 +#: ../../Zotlabs/Module/Admin/Accounts.php:337 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted" " on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin/Accounts.php:191 +#: ../../Zotlabs/Module/Admin/Accounts.php:338 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin/Site.php:165 +#: ../../Zotlabs/Module/Admin/Site.php:112 +msgid "Invalid input" +msgstr "Entrada no válida" + +#: ../../Zotlabs/Module/Admin/Site.php:132 +msgid "Errors" +msgstr "Errores" + +#: ../../Zotlabs/Module/Admin/Site.php:225 msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin/Site.php:202 +#: ../../Zotlabs/Module/Admin/Site.php:262 #: ../../Zotlabs/Module/Settings/Display.php:118 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (Incompatible)" -#: ../../Zotlabs/Module/Admin/Site.php:209 +#: ../../Zotlabs/Module/Admin/Site.php:269 msgid "mobile" msgstr "móvil" -#: ../../Zotlabs/Module/Admin/Site.php:211 +#: ../../Zotlabs/Module/Admin/Site.php:271 msgid "experimental" msgstr "experimental" -#: ../../Zotlabs/Module/Admin/Site.php:213 +#: ../../Zotlabs/Module/Admin/Site.php:273 msgid "unsupported" msgstr "no soportado" -#: ../../Zotlabs/Module/Admin/Site.php:260 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Yes - with approval" msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "My site is not a public server" msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "My site has paid access only" msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "My site has free access only" msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin/Site.php:269 +#: ../../Zotlabs/Module/Admin/Site.php:331 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:283 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Default permission role for new accounts" msgstr "Permisos de rol por defecto para las nuevas cuentas" -#: ../../Zotlabs/Module/Admin/Site.php:283 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "" "This role will be used for the first channel created after registration." msgstr "Este rol se utilizará para el primer canal creado después del registro." -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:353 ../../Zotlabs/Module/Invite.php:398 +msgid "Minute(s)" +msgstr "Minuto(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:354 ../../Zotlabs/Module/Invite.php:399 +msgid "Hour(s)" +msgstr "Hora(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:355 ../../Zotlabs/Module/Invite.php:400 +msgid "Day(s)" +msgstr "Día(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Week(s)" +msgstr "Semana(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:357 +msgid "Month(s)" +msgstr "Mes(Meses)" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Year(s)" +msgstr "Año(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:366 +msgid "Register verification delay" +msgstr "Retraso en la verificación del registro" + +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "Time to wait before a registration can be verified" +msgstr "Tiempo de espera para verificar un registro " + +#: ../../Zotlabs/Module/Admin/Site.php:372 +#: ../../Zotlabs/Module/Admin/Site.php:394 ../../Zotlabs/Module/Invite.php:409 +msgid "duration up from now" +msgstr "duración a partir de ahora " + +#: ../../Zotlabs/Module/Admin/Site.php:388 +msgid "Register verification expiration time" +msgstr "Tiempo de caducidad de la verificación del registro " + +#: ../../Zotlabs/Module/Admin/Site.php:391 +msgid "Time before an unverified registration will expire" +msgstr "Tiempo antes de que caduque un registro no verificado " + +#: ../../Zotlabs/Module/Admin/Site.php:414 msgid "File upload" msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:415 msgid "Policies" msgstr "Políticas" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:422 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:422 msgid "Unfiltered HTML/CSS/JS is allowed" msgstr "Se permite HTML/CSS/JS sin filtrar" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:423 msgid "Administrator Information" msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:423 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:305 +#: ../../Zotlabs/Module/Admin/Site.php:424 #: ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" msgstr "Información sobre el sitio" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:424 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:306 +#: ../../Zotlabs/Module/Admin/Site.php:425 msgid "System language" msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:426 msgid "System theme" msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:426 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:429 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:429 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:430 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:430 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:312 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Invitation only" -msgstr "Solo con una invitación" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -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:314 +#: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age" msgstr "Edad mínima" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age (in years) for who may register on this site." msgstr "Edad mínima (en años) para poder registrarse en este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:432 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:315 +#: ../../Zotlabs/Module/Admin/Site.php:432 msgid "This is displayed on the public server site list." msgstr "Esto se muestra en la lista de sitios de servidores públicos." -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:438 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin/Site.php:316 -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:440 +msgid "This text will be displayed prominently at the registration page" +msgstr "Este texto se mostrará de forma destacada en la página de registro " -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:444 +msgid "Does this site allow new member registration?" +msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" + +#: ../../Zotlabs/Module/Admin/Site.php:451 +msgid "Configure the registration open days/hours" +msgstr "Configurar los días/horas de apertura del registro" + +#: ../../Zotlabs/Module/Admin/Site.php:453 +msgid "Empty or '-:-' value will keep registration open 24/7 (default)" +msgstr "El valor vacío o \"-:-\" mantendrá el registro abierto 24/7 (por defecto)" + +#: ../../Zotlabs/Module/Admin/Site.php:454 +msgid "" +"Weekdays and hours must be separated by colon ':', From-To ranges with a " +"dash `-` example: 1:800-1200" +msgstr "Los días de la semana y las horas deben separarse con dos puntos ':', los rangos Desde-Hasta con un guión `-` ejemplo: 1:800-1200" + +#: ../../Zotlabs/Module/Admin/Site.php:455 +msgid "" +"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " +"2:900-1700" +msgstr "Los pares día de la semana:hora deben estar separados por un espacio ' ' ejemplo: 1:900-1700 2:900-1700" + +#: ../../Zotlabs/Module/Admin/Site.php:456 +msgid "" +"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " +"or 1-2,4-5:900-1700" +msgstr "Los rangos desde-hasta deben estar separados por comas ',' ejemplo: 1:800-1200,1300-1700 o 1-2,4-5:900-1700" + +#: ../../Zotlabs/Module/Admin/Site.php:457 +msgid "Advanced examples:" +msgstr "Ejemplos avanzados: " + +#: ../../Zotlabs/Module/Admin/Site.php:457 +#: ../../Zotlabs/Module/Settings/Channel.php:420 +msgid "or" +msgstr "o" + +#: ../../Zotlabs/Module/Admin/Site.php:458 +msgid "Check your configuration" +msgstr "Compruebe su configuración" + +#: ../../Zotlabs/Module/Admin/Site.php:462 +msgid "Max account registrations per day" +msgstr "Máximo de registros de cuentas por día " + +#: ../../Zotlabs/Module/Admin/Site.php:464 +msgid "Unlimited if zero or no value - default 50" +msgstr "Ilimitado si es cero o sin valor - por defecto 50" + +#: ../../Zotlabs/Module/Admin/Site.php:468 +msgid "Max account registrations from same IP" +msgstr "Máximo de registros de cuentas desde la misma IP" + +#: ../../Zotlabs/Module/Admin/Site.php:470 +msgid "Unlimited if zero or no value - default 3" +msgstr "Ilimitado si es cero o sin valor - por defecto 3" + +#: ../../Zotlabs/Module/Admin/Site.php:476 +msgid "Auto channel create" +msgstr "Creación automática de canales" + +#: ../../Zotlabs/Module/Admin/Site.php:478 +msgid "" +"If disabled the channel will be created in a separate step during the " +"registration process" +msgstr "Si se desactiva, el canal se creará en un paso separado durante el proceso de registro" + +#: ../../Zotlabs/Module/Admin/Site.php:482 +msgid "Require invite code" +msgstr "Solicitar código de invitación" + +#: ../../Zotlabs/Module/Admin/Site.php:487 +msgid "Allow invite code" +msgstr "Permitir código de invitación" + +#: ../../Zotlabs/Module/Admin/Site.php:492 +msgid "Require email address" +msgstr "Solicitar dirección de correo electrónico" + +#: ../../Zotlabs/Module/Admin/Site.php:494 +msgid "The provided email address will be verified (recommended)" +msgstr "La dirección de correo electrónico proporcionada será verificada (recomendado)" + +#: ../../Zotlabs/Module/Admin/Site.php:498 +msgid "Abandon account after x days" +msgstr "Abandonar la cuenta después de x días" + +#: ../../Zotlabs/Module/Admin/Site.php:500 +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:505 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:318 +#: ../../Zotlabs/Module/Admin/Site.php:505 msgid "" "example: 'pubstream' to show public stream, 'page/sys/home' to show a system" " webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'pubstream' para mostrar el stream público, 'page/sys/home' para mostrar una página web del sistema llamada 'home' o 'include:home.html' para incluir un archivo." -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:506 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:506 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:320 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -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:321 +#: ../../Zotlabs/Module/Admin/Site.php:507 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:507 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:322 -msgid "Verify Email Addresses" -msgstr "Verificar las direcciones de correo electrónico" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -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:323 +#: ../../Zotlabs/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:508 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:324 +#: ../../Zotlabs/Module/Admin/Site.php:509 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:509 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:325 +#: ../../Zotlabs/Module/Admin/Site.php:510 msgid "Site only Public Streams" msgstr "Solo contenido público en este sitio" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:510 msgid "" "Allow access to public content originating only from this site if Imported " "Public Streams are disabled." msgstr "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados." -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:511 msgid "Allow anybody on the internet to access the Public streams" msgstr "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:511 msgid "" "Disable to require authentication before viewing. Warning: this content is " "unmoderated." msgstr "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado." -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:512 msgid "Only import Public stream posts with this text" msgstr "Importar solo entradas del stream púlbico con este texto " -#: ../../Zotlabs/Module/Admin/Site.php:327 -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:512 +#: ../../Zotlabs/Module/Admin/Site.php:513 #: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 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/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:513 msgid "Do not import Public stream posts with this text" msgstr "No importar entradas del stream público con este texto " -#: ../../Zotlabs/Module/Admin/Site.php:331 +#: ../../Zotlabs/Module/Admin/Site.php:516 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:331 +#: ../../Zotlabs/Module/Admin/Site.php:516 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:332 +#: ../../Zotlabs/Module/Admin/Site.php:517 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin/Site.php:332 +#: ../../Zotlabs/Module/Admin/Site.php:517 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:334 +#: ../../Zotlabs/Module/Admin/Site.php:519 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:335 +#: ../../Zotlabs/Module/Admin/Site.php:520 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:336 +#: ../../Zotlabs/Module/Admin/Site.php:521 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:338 +#: ../../Zotlabs/Module/Admin/Site.php:523 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin/Site.php:338 +#: ../../Zotlabs/Module/Admin/Site.php:523 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:340 +#: ../../Zotlabs/Module/Admin/Site.php:525 msgid "Enable SSE Notifications" msgstr "Habilitar notificaciones SSE" -#: ../../Zotlabs/Module/Admin/Site.php:340 +#: ../../Zotlabs/Module/Admin/Site.php:525 msgid "" "If disabled, traditional polling will be used. Warning: this setting might " "not be suited for shared hosting" msgstr "Si está desactivado, se usará el sistema de votación tradicional. Advertencia: esta configuración podría no ser adecuada para el alojamiento compartido" -#: ../../Zotlabs/Module/Admin/Site.php:342 +#: ../../Zotlabs/Module/Admin/Site.php:527 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:343 +#: ../../Zotlabs/Module/Admin/Site.php:528 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:344 +#: ../../Zotlabs/Module/Admin/Site.php:529 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin/Site.php:344 +#: ../../Zotlabs/Module/Admin/Site.php:529 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:345 +#: ../../Zotlabs/Module/Admin/Site.php:530 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin/Site.php:345 +#: ../../Zotlabs/Module/Admin/Site.php:530 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:346 +#: ../../Zotlabs/Module/Admin/Site.php:531 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin/Site.php:346 +#: ../../Zotlabs/Module/Admin/Site.php:531 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:347 +#: ../../Zotlabs/Module/Admin/Site.php:532 msgid "Queue Threshold" msgstr "Umbral de la cola de espera" -#: ../../Zotlabs/Module/Admin/Site.php:347 +#: ../../Zotlabs/Module/Admin/Site.php:532 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas." -#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Admin/Site.php:533 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Admin/Site.php:533 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:349 +#: ../../Zotlabs/Module/Admin/Site.php:534 msgid "Path to ImageMagick convert program" msgstr "Ruta al programa de conversión de ImageMagick" -#: ../../Zotlabs/Module/Admin/Site.php:349 +#: ../../Zotlabs/Module/Admin/Site.php:534 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:350 +#: ../../Zotlabs/Module/Admin/Site.php:535 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin/Site.php:350 +#: ../../Zotlabs/Module/Admin/Site.php:535 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:351 +#: ../../Zotlabs/Module/Admin/Site.php:536 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:351 +#: ../../Zotlabs/Module/Admin/Site.php:536 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" -#: ../../Zotlabs/Module/Admin/Site.php:352 +#: ../../Zotlabs/Module/Admin/Site.php:537 msgid "" "Do not expire any posts which have comments less than this many days ago" msgstr "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días" -#: ../../Zotlabs/Module/Admin/Site.php:354 +#: ../../Zotlabs/Module/Admin/Site.php:538 msgid "" "Public servers: Optional landing (marketing) webpage for new registrants" msgstr "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros" -#: ../../Zotlabs/Module/Admin/Site.php:354 +#: ../../Zotlabs/Module/Admin/Site.php:538 #, php-format msgid "Create this page first. Default is %s/register" msgstr "Crear esta página primero. Por defecto es %s/register" -#: ../../Zotlabs/Module/Admin/Site.php:355 +#: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Page to display after creating a new channel" msgstr "Página a mostrar después de la creación de un nuevo canal" -#: ../../Zotlabs/Module/Admin/Site.php:355 +#: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Default: profiles" msgstr "Perfiles predeterminados" -#: ../../Zotlabs/Module/Admin/Site.php:357 +#: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Optional: site location" msgstr "Opcional: ubicación del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:357 +#: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Region or country" msgstr "Región o país" +#: ../../Zotlabs/Module/Admin/Site.php:625 +#: ../../Zotlabs/Module/Admin/Site.php:626 +msgid "Invalid 24h time value (hhmm/hmm)" +msgstr "Valor de tiempo de 24h no válido (hhmm/hmm)" + #: ../../Zotlabs/Module/Admin/Logs.php:28 msgid "Log settings updated." msgstr "Actualizado el informe de configuraciones." @@ -10953,6 +11148,10 @@ msgstr "Código permitido al canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "seleccionar todo" + #: ../../Zotlabs/Module/Admin/Channels.php:150 #: ../../Zotlabs/Module/Directory.php:362 msgid "Censor" @@ -11016,10 +11215,6 @@ msgstr "Nueva contraseña otra vez" msgid "Account language (for emails)" msgstr "Idioma de la cuenta (para los correos electrónicos)" -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Service class" -msgstr "Clase de servicio" - #: ../../Zotlabs/Module/Admin/Profs.php:89 msgid "New Profile Field" msgstr "Nuevo campo en el perfil" @@ -11286,6 +11481,129 @@ msgstr "Por favor, introduzca su contraseña para su verificación:" msgid "Remove Channel" msgstr "Eliminar el canal" +#: ../../Zotlabs/Module/Regate.php:81 +msgid "Email resent" +msgstr "Correo electrónico reenviado" + +#: ../../Zotlabs/Module/Regate.php:81 +msgid "Email resend failed" +msgstr "Fallo en el reenvío del correo electrónico" + +#: ../../Zotlabs/Module/Regate.php:105 +msgid "Verify successfull" +msgstr "Verificar que se ha hecho bien" + +#: ../../Zotlabs/Module/Regate.php:149 +msgid "Account successfull created" +msgstr "Cuenta creada con éxito" + +#: ../../Zotlabs/Module/Regate.php:190 +msgid "Channel successfull created" +msgstr "Canal creado con éxito" + +#: ../../Zotlabs/Module/Regate.php:196 +msgid "Automatic channel creation failed. Please create a channel." +msgstr "La creación automática de canales ha fallado. Por favor, cree un canal." + +#: ../../Zotlabs/Module/Regate.php:208 +msgid "Account creation error" +msgstr "Error en la creación de la cuenta" + +#: ../../Zotlabs/Module/Regate.php:220 +msgid "Verify failed" +msgstr "Verificación fallida" + +#: ../../Zotlabs/Module/Regate.php:225 +msgid "Token verification failed" +msgstr "Ha fallado el token de verificación." + +#: ../../Zotlabs/Module/Regate.php:230 +msgid "Request not inside time frame" +msgstr "Solicitud fuera de plazo" + +#: ../../Zotlabs/Module/Regate.php:236 ../../Zotlabs/Module/Regate.php:266 +msgid "Identity unknown" +msgstr "Identidad desconocida" + +#: ../../Zotlabs/Module/Regate.php:242 +msgid "dId2 mistaken" +msgstr "did2 equivocado/a" + +#: ../../Zotlabs/Module/Regate.php:270 +msgid "Your Registration ID" +msgstr "Su ID de registro" + +#: ../../Zotlabs/Module/Regate.php:283 ../../Zotlabs/Module/Regate.php:374 +#: ../../Zotlabs/Module/Regate.php:403 +msgid "Registration verification" +msgstr "Verificación del registro" + +#: ../../Zotlabs/Module/Regate.php:290 ../../Zotlabs/Module/Regate.php:408 +msgid "Hold on, you can start verification in" +msgstr "Espere, puede empezar la verificación en " + +#: ../../Zotlabs/Module/Regate.php:291 +msgid "Please remember your verification token for ID" +msgstr "Por favor, recuerde su token de verificación para la identificación" + +#: ../../Zotlabs/Module/Regate.php:292 +msgid "Token validity" +msgstr "Validez del token" + +#: ../../Zotlabs/Module/Regate.php:328 +msgid "Resend" +msgstr "Reenviar" + +#: ../../Zotlabs/Module/Regate.php:333 +msgid "Registration status" +msgstr "Estado del registro" + +#: ../../Zotlabs/Module/Regate.php:336 +msgid "Verification successful!" +msgstr "¡Verificación exitosa!" + +#: ../../Zotlabs/Module/Regate.php:337 +msgid "Your login ID is" +msgstr "Su ID de acceso es" + +#: ../../Zotlabs/Module/Regate.php:338 +msgid "" +"After your account has been approved by our administrator you will be able " +"to login with your login ID and your provided password." +msgstr "Una vez que su cuenta haya sido aprobada por nuestro administrador, podrá iniciar sesión con su ID de acceso y la contraseña proporcionada." + +#: ../../Zotlabs/Module/Regate.php:350 +msgid "Registration request revoked" +msgstr "Solicitud de registro anulada" + +#: ../../Zotlabs/Module/Regate.php:351 +msgid "Sorry for any inconvience. Thank you for your response." +msgstr "Disculpe las molestias. Gracias por su respuesta." + +#: ../../Zotlabs/Module/Regate.php:375 +msgid "Please enter your verification token for ID" +msgstr "Por favor, introduzca su token de verificación para la identificación" + +#: ../../Zotlabs/Module/Regate.php:385 +msgid "Verification token" +msgstr "Token de verificación " + +#: ../../Zotlabs/Module/Regate.php:396 +msgid "ID expired" +msgstr "ID caducada" + +#: ../../Zotlabs/Module/Regate.php:409 +msgid "You will require the verification token for ID" +msgstr "Necesitará el token de verificación para identificarse" + +#: ../../Zotlabs/Module/Regate.php:417 +msgid "Unknown or expired ID" +msgstr "ID desconocida o caducada" + +#: ../../Zotlabs/Module/Regate.php:428 +msgid "dId2 malformed" +msgstr "did2 malformado/a" + #: ../../Zotlabs/Module/Events.php:468 msgid "Edit event title" msgstr "Editar el título del evento" @@ -11534,7 +11852,7 @@ msgid "" msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." #: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:105 +#: ../../Zotlabs/Module/Settings/Account.php:109 msgid "Remove Account" msgstr "Eliminar cuenta" @@ -11546,30 +11864,30 @@ msgstr "App idioma" msgid "Change UI language" msgstr "Cambiar el idioma de la interfaz de usuario" -#: ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Uexport.php:62 msgid "Channel Export App" msgstr "App Exportación de canales" -#: ../../Zotlabs/Module/Uexport.php:62 +#: ../../Zotlabs/Module/Uexport.php:63 msgid "Export your channel" msgstr "Exportar su canal" -#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 +#: ../../Zotlabs/Module/Uexport.php:73 ../../Zotlabs/Module/Uexport.php:74 msgid "Export Channel" msgstr "Exportar el canal" -#: ../../Zotlabs/Module/Uexport.php:74 +#: ../../Zotlabs/Module/Uexport.php:75 msgid "" "Export your basic channel information to a file. This acts as a backup of " "your connections, permissions, profile and basic data, which can be used to " "import your data to a new server hub, but does not contain your content." msgstr "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." -#: ../../Zotlabs/Module/Uexport.php:75 +#: ../../Zotlabs/Module/Uexport.php:76 msgid "Export Content" msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Uexport.php:76 +#: ../../Zotlabs/Module/Uexport.php:77 msgid "" "Export your channel information and recent content to a JSON backup that can" " be restored or imported to another server hub. This backs up all of your " @@ -11578,11 +11896,11 @@ msgid "" " this download to begin." msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../Zotlabs/Module/Uexport.php:78 +#: ../../Zotlabs/Module/Uexport.php:79 msgid "Export your posts from a given year." msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Uexport.php:80 +#: ../../Zotlabs/Module/Uexport.php:81 msgid "" "You may also export your posts and conversations for a particular year or " "month. Adjust the date in your browser location bar to select other dates. " @@ -11590,21 +11908,21 @@ msgid "" "please try again selecting a more limited date range." msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../Zotlabs/Module/Uexport.php:81 +#: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" "To select all posts for a given year, such as this year, visit %2$s" msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" -#: ../../Zotlabs/Module/Uexport.php:82 +#: ../../Zotlabs/Module/Uexport.php:83 #, php-format msgid "" "To select all posts for a given month, such as January of this year, visit " "%2$s" msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" -#: ../../Zotlabs/Module/Uexport.php:83 +#: ../../Zotlabs/Module/Uexport.php:84 #, php-format msgid "" "These content files may be imported or restored by visiting %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../Zotlabs/Module/Display.php:380 +#: ../../Zotlabs/Module/Display.php:372 msgid "Article" msgstr "Artículo" -#: ../../Zotlabs/Module/Display.php:425 +#: ../../Zotlabs/Module/Display.php:417 msgid "Item has been removed." msgstr "Se ha eliminado el elemento." @@ -11664,12 +11982,21 @@ msgstr "Los caracteres permitidos son a-z 0-9, - and _" msgid "Channel name" msgstr "Nombre del canal" +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" + #: ../../Zotlabs/Module/New_channel.php:178 msgid "" "Select a channel permission role compatible with your usage needs and " "privacy requirements." msgstr "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad." +#: ../../Zotlabs/Module/New_channel.php:178 +msgid "Read more about channel permission roles" +msgstr "Leer más sobre los roles y permisos" + #: ../../Zotlabs/Module/New_channel.php:181 msgid "Create a Channel" msgstr "Crear un canal" @@ -11698,7 +12025,7 @@ msgstr "le ha enviado un mensaje privado" msgid "added your channel" msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Ping.php:418 ../../Zotlabs/Lib/Enotify.php:986 +#: ../../Zotlabs/Module/Ping.php:418 msgid "requires approval" msgstr "requiere aprobación" @@ -11719,11 +12046,11 @@ msgstr "publicó un evento" msgid "shared a file with you" msgstr "compartió un archivo con usted" -#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:540 +#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:554 msgid "Private forum" msgstr "Foro privado" -#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:540 +#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:554 msgid "Public forum" msgstr "Foro público" @@ -11857,43 +12184,43 @@ msgstr "Cuentas caducadas" msgid "Expiring accounts" msgstr "Cuentas que caducan" -#: ../../Zotlabs/Module/Admin.php:120 +#: ../../Zotlabs/Module/Admin.php:123 msgid "Message queues" msgstr "Mensajes en cola" -#: ../../Zotlabs/Module/Admin.php:134 +#: ../../Zotlabs/Module/Admin.php:137 msgid "Your software should be updated" msgstr "Debe actualizar su software" -#: ../../Zotlabs/Module/Admin.php:139 +#: ../../Zotlabs/Module/Admin.php:142 msgid "Summary" msgstr "Sumario" -#: ../../Zotlabs/Module/Admin.php:142 +#: ../../Zotlabs/Module/Admin.php:145 msgid "Registered accounts" msgstr "Cuentas registradas" -#: ../../Zotlabs/Module/Admin.php:143 +#: ../../Zotlabs/Module/Admin.php:146 msgid "Pending registrations" msgstr "Registros pendientes" -#: ../../Zotlabs/Module/Admin.php:144 +#: ../../Zotlabs/Module/Admin.php:147 msgid "Registered channels" msgstr "Canales registrados" -#: ../../Zotlabs/Module/Admin.php:145 +#: ../../Zotlabs/Module/Admin.php:148 msgid "Active addons" msgstr "Addons acivos" -#: ../../Zotlabs/Module/Admin.php:146 +#: ../../Zotlabs/Module/Admin.php:149 msgid "Version" msgstr "Versión" -#: ../../Zotlabs/Module/Admin.php:147 +#: ../../Zotlabs/Module/Admin.php:150 msgid "Repository version (master)" msgstr "Versión del repositorio (master)" -#: ../../Zotlabs/Module/Admin.php:148 +#: ../../Zotlabs/Module/Admin.php:151 msgid "Repository version (dev)" msgstr "Versión del repositorio (dev)" @@ -12132,7 +12459,7 @@ msgid "Use a photo from your albums" msgstr "Usar una foto de sus álbumes" #: ../../Zotlabs/Module/Profile_photo.php:511 -#: ../../Zotlabs/Module/Cover_photo.php:432 ../../Zotlabs/Module/Wiki.php:405 +#: ../../Zotlabs/Module/Cover_photo.php:432 ../../Zotlabs/Module/Wiki.php:404 msgid "Choose a different album" msgstr "Elegir un álbum diferente..." @@ -12217,7 +12544,7 @@ msgstr "Archivadas o inaccesibles" #: ../../Zotlabs/Module/Connections.php:83 #: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:180 -#: ../../Zotlabs/Module/Notifications.php:50 +#: ../../Zotlabs/Module/Notifications.php:53 msgid "New" msgstr "Nuevas" @@ -12526,7 +12853,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:1720 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1725 msgid "Password Reset" msgstr "Restablecer la contraseña" @@ -12743,7 +13070,7 @@ msgid "Your full name" msgstr "Nombre completo" #: ../../Zotlabs/Module/Profiles.php:752 -msgid "Short title/tescription" +msgid "Short title/description" msgstr "Breve título y descripción" #: ../../Zotlabs/Module/Profiles.php:752 @@ -12842,12 +13169,12 @@ msgstr "Mis otros canales" msgid "Communications" msgstr "Comunicaciones" -#: ../../Zotlabs/Module/Subthread.php:143 +#: ../../Zotlabs/Module/Subthread.php:128 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "%1$s está siguiendo %3$s de %2$s" -#: ../../Zotlabs/Module/Subthread.php:145 +#: ../../Zotlabs/Module/Subthread.php:130 #, php-format msgid "%1$s stopped following %2$s's %3$s" msgstr "%1$s ha dejado de seguir %3$s de %2$s" @@ -12914,74 +13241,121 @@ msgstr "Nueva dirección del canal" msgid "Rename Channel" msgstr "Renombrar el canal" -#: ../../Zotlabs/Module/Invite.php:37 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." +#: ../../Zotlabs/Module/Invite.php:56 ../../Zotlabs/Module/Invite.php:310 +msgid "Invite App" +msgstr "Solicitar una app" + +#: ../../Zotlabs/Module/Invite.php:68 +msgid "Register is closed" +msgstr "El registro está cerrado" -#: ../../Zotlabs/Module/Invite.php:61 +#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Invite.php:549 +msgid "Note, the invitation code is valid up to" +msgstr "Tenga en cuenta que el código de invitación es válido hasta " + +#: ../../Zotlabs/Module/Invite.php:115 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " +msgid "Too many recipients for one invitation (max %d)" +msgstr "Demasiados destinatarios para una invitación (máx %d)" -#: ../../Zotlabs/Module/Invite.php:75 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" +#: ../../Zotlabs/Module/Invite.php:119 +msgid "No recipients for this invitation" +msgstr "No hay destinatarios para esta invitación" -#: ../../Zotlabs/Module/Invite.php:85 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." +#: ../../Zotlabs/Module/Invite.php:133 +#, php-format +msgid "(%s) : Not a valid email address" +msgstr "(%s): No es una dirección de correo electrónico válida" -#: ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Invite.php:138 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." +msgid "(%s) : Not a real email address" +msgstr "(%s) : No es una dirección de correo electrónica real" -#: ../../Zotlabs/Module/Invite.php:110 -msgid "Invite App" -msgstr "Solicitar una app" +#: ../../Zotlabs/Module/Invite.php:145 +#, php-format +msgid "(%s) : Not allowed email address" +msgstr "(%s) : Dirección de correo electrónico no permitida" -#: ../../Zotlabs/Module/Invite.php:111 -msgid "Send email invitations to join this network" -msgstr "Enviar invitaciones por correo electrónico para unirse a esta red" +#: ../../Zotlabs/Module/Invite.php:158 +#, php-format +msgid "(%s) : email address already in use" +msgstr "(%s) : La dirección de correo electrónico ya está en uso" + +#: ../../Zotlabs/Module/Invite.php:165 +#, php-format +msgid "(%s) : Accepted email address" +msgstr "(%s) : Dirección de correo electrónico aceptada" + +#: ../../Zotlabs/Module/Invite.php:257 +#, php-format +msgid "To %s : Message delivery success." +msgstr "To %s : Entrega exitosa del mensaje." + +#: ../../Zotlabs/Module/Invite.php:289 +#, php-format +msgid "%1$d mail(s) sent, %2$d mail error(s)" +msgstr "%1$d correo(s) enviado, %2$d error(es) de correo" -#: ../../Zotlabs/Module/Invite.php:124 +#: ../../Zotlabs/Module/Invite.php:315 +msgid "Invites not proposed by configuration" +msgstr "Invitaciones no propuestas por la configuración" + +#: ../../Zotlabs/Module/Invite.php:316 +msgid "Contact the site admin" +msgstr "Contactar con el administrador del sitio" + +#: ../../Zotlabs/Module/Invite.php:332 +msgid "Invites by users not enabled" +msgstr "Invitaciones de usuarios no habilitadas" + +#: ../../Zotlabs/Module/Invite.php:337 msgid "You have no more invitations available" msgstr "No tiene más invitaciones disponibles" -#: ../../Zotlabs/Module/Invite.php:155 +#: ../../Zotlabs/Module/Invite.php:353 +msgid "Not on xchan" +msgstr "No en xchan" + +#: ../../Zotlabs/Module/Invite.php:386 +msgid "All users invitation limit exceeded." +msgstr "Se ha superado el límite de invitaciones a todos los usuarios." + +#: ../../Zotlabs/Module/Invite.php:404 +msgid "Invitation expires after" +msgstr "La invitación expira después de " + +#: ../../Zotlabs/Module/Invite.php:504 ../../Zotlabs/Module/Invite.php:543 +msgid "Invitation" +msgstr "Invitación" + +#: ../../Zotlabs/Module/Invite.php:534 msgid "Send invitations" msgstr "Enviar invitaciones" -#: ../../Zotlabs/Module/Invite.php:156 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" - -#: ../../Zotlabs/Module/Invite.php:158 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." +#: ../../Zotlabs/Module/Invite.php:535 +msgid "Invitations I am using" +msgstr "Invitaciones que estoy utilizando " -#: ../../Zotlabs/Module/Invite.php:160 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" +#: ../../Zotlabs/Module/Invite.php:536 +msgid "Invitations we are using" +msgstr "Invitaciones que usamos " -#: ../../Zotlabs/Module/Invite.php:161 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" +#: ../../Zotlabs/Module/Invite.php:537 +msgid "§ Note, the email(s) sent will be recorded in the system logs" +msgstr "§ Nota: el/los correo(s) electrónicos enviados quedarán registrados en los registros del sistema" -#: ../../Zotlabs/Module/Invite.php:163 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." +#: ../../Zotlabs/Module/Invite.php:538 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" -#: ../../Zotlabs/Module/Invite.php:164 -msgid "or visit" -msgstr "o visitar" +#: ../../Zotlabs/Module/Invite.php:540 +msgid "Invite template" +msgstr "Plantilla de invitación" -#: ../../Zotlabs/Module/Invite.php:166 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" +#: ../../Zotlabs/Module/Invite.php:548 +msgid "Here you may enter personal notes to the recipient(s)" +msgstr "Aquí puede introducir notas personales para el/los destinatario(s)" #: ../../Zotlabs/Module/Notes.php:57 msgid "Notes App" @@ -13126,10 +13500,6 @@ msgstr "Publicar su perfil principal en el directorio de la red" 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:420 -msgid "or" -msgstr "o" - #: ../../Zotlabs/Module/Settings/Channel.php:429 msgid "Your channel address is" msgstr "Su dirección de canal es" @@ -13157,7 +13527,6 @@ msgid "Basic Settings" msgstr "Configuración básica" #: ../../Zotlabs/Module/Settings/Channel.php:502 -#: ../../Zotlabs/Module/Settings/Account.php:104 msgid "Email Address:" msgstr "Dirección de correo electrónico:" @@ -13476,59 +13845,63 @@ msgstr "Carpeta por defecto de los ficheros subidos" msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings/Account.php:19 +#: ../../Zotlabs/Module/Settings/Account.php:21 msgid "Not valid email." msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Settings/Account.php:22 +#: ../../Zotlabs/Module/Settings/Account.php:24 msgid "Protected email address. Cannot change to that email." msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../Zotlabs/Module/Settings/Account.php:31 +#: ../../Zotlabs/Module/Settings/Account.php:33 msgid "System failure storing new email. Please try again." msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../Zotlabs/Module/Settings/Account.php:48 +#: ../../Zotlabs/Module/Settings/Account.php:51 msgid "Password verification failed." msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Settings/Account.php:55 +#: ../../Zotlabs/Module/Settings/Account.php:58 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings/Account.php:59 +#: ../../Zotlabs/Module/Settings/Account.php:62 msgid "Empty passwords are not allowed. Password unchanged." msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings/Account.php:73 +#: ../../Zotlabs/Module/Settings/Account.php:76 msgid "Password changed." msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Settings/Account.php:75 +#: ../../Zotlabs/Module/Settings/Account.php:78 msgid "Password update failed. Please try again." msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../Zotlabs/Module/Settings/Account.php:99 +#: ../../Zotlabs/Module/Settings/Account.php:103 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Settings/Account.php:100 +#: ../../Zotlabs/Module/Settings/Account.php:104 msgid "Current Password" msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Settings/Account.php:101 +#: ../../Zotlabs/Module/Settings/Account.php:105 msgid "Enter New Password" msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Settings/Account.php:102 +#: ../../Zotlabs/Module/Settings/Account.php:106 msgid "Confirm New Password" msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Settings/Account.php:102 +#: ../../Zotlabs/Module/Settings/Account.php:106 msgid "Leave password fields blank unless changing" msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Settings/Account.php:106 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "DId2 or Email Address:" +msgstr "Did2 o dirección de correo electrónico: " + +#: ../../Zotlabs/Module/Settings/Account.php:110 msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" @@ -14040,135 +14413,135 @@ msgstr "App Wiki" msgid "Provide a wiki for your channel" msgstr "Proporcionar un wiki para su canal" -#: ../../Zotlabs/Module/Wiki.php:133 +#: ../../Zotlabs/Module/Wiki.php:132 msgid "Error retrieving wiki" msgstr "Error al recuperar el wiki" -#: ../../Zotlabs/Module/Wiki.php:140 +#: ../../Zotlabs/Module/Wiki.php:139 msgid "Error creating zip file export folder" msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar" -#: ../../Zotlabs/Module/Wiki.php:191 +#: ../../Zotlabs/Module/Wiki.php:190 msgid "Error downloading wiki: " msgstr "Error al descargar el wiki: " -#: ../../Zotlabs/Module/Wiki.php:212 ../../Zotlabs/Storage/Browser.php:404 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Storage/Browser.php:404 msgid "Download" msgstr "Descargar" -#: ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:215 msgid "Wiki name" msgstr "Nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Module/Wiki.php:216 msgid "Content type" msgstr "Tipo de contenido" -#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:378 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Storage/Browser.php:378 msgid "Type" msgstr "Tipo" -#: ../../Zotlabs/Module/Wiki.php:220 +#: ../../Zotlabs/Module/Wiki.php:219 msgid "Any type" msgstr "Cualquier tipo" -#: ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Wiki.php:226 msgid "Lock content type" msgstr "Tipo de contenido bloqueado" -#: ../../Zotlabs/Module/Wiki.php:228 +#: ../../Zotlabs/Module/Wiki.php:227 msgid "Create a status post for this wiki" msgstr "Crear un mensaje de estado para este wiki" -#: ../../Zotlabs/Module/Wiki.php:229 +#: ../../Zotlabs/Module/Wiki.php:228 msgid "Edit Wiki Name" msgstr "Editar el nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:274 +#: ../../Zotlabs/Module/Wiki.php:273 msgid "Wiki not found" msgstr "Wiki no encontrado" -#: ../../Zotlabs/Module/Wiki.php:300 +#: ../../Zotlabs/Module/Wiki.php:299 msgid "Rename page" msgstr "Renombrar la página" -#: ../../Zotlabs/Module/Wiki.php:321 +#: ../../Zotlabs/Module/Wiki.php:320 msgid "Error retrieving page content" msgstr "Error al recuperar el contenido de la página" -#: ../../Zotlabs/Module/Wiki.php:329 ../../Zotlabs/Module/Wiki.php:331 +#: ../../Zotlabs/Module/Wiki.php:328 ../../Zotlabs/Module/Wiki.php:330 msgid "New page" msgstr "Nueva página" -#: ../../Zotlabs/Module/Wiki.php:366 +#: ../../Zotlabs/Module/Wiki.php:365 msgid "Revision Comparison" msgstr "Comparación de revisiones" -#: ../../Zotlabs/Module/Wiki.php:374 +#: ../../Zotlabs/Module/Wiki.php:373 msgid "Short description of your changes (optional)" msgstr "Breve descripción de sus cambios (opcional)" -#: ../../Zotlabs/Module/Wiki.php:394 +#: ../../Zotlabs/Module/Wiki.php:393 msgid "New page name" msgstr "Nombre de la nueva página" -#: ../../Zotlabs/Module/Wiki.php:399 +#: ../../Zotlabs/Module/Wiki.php:398 msgid "Embed image from photo albums" msgstr "Incluir una imagen de los álbumes de fotos" -#: ../../Zotlabs/Module/Wiki.php:410 +#: ../../Zotlabs/Module/Wiki.php:409 msgid "History" msgstr "Historial" -#: ../../Zotlabs/Module/Wiki.php:488 +#: ../../Zotlabs/Module/Wiki.php:487 msgid "Error creating wiki. Invalid name." msgstr "Error al crear el wiki: el nombre no es válido." -#: ../../Zotlabs/Module/Wiki.php:495 +#: ../../Zotlabs/Module/Wiki.php:494 msgid "A wiki with this name already exists." msgstr "Ya hay un wiki con este nombre." -#: ../../Zotlabs/Module/Wiki.php:508 +#: ../../Zotlabs/Module/Wiki.php:507 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:515 +#: ../../Zotlabs/Module/Wiki.php:514 msgid "Error creating wiki" msgstr "Error al crear el wiki" -#: ../../Zotlabs/Module/Wiki.php:539 +#: ../../Zotlabs/Module/Wiki.php:538 msgid "Error updating wiki. Invalid name." msgstr "Error al actualizar el wiki. Nombre no válido." -#: ../../Zotlabs/Module/Wiki.php:559 +#: ../../Zotlabs/Module/Wiki.php:557 msgid "Error updating wiki" msgstr "Error al actualizar el wiki" -#: ../../Zotlabs/Module/Wiki.php:574 +#: ../../Zotlabs/Module/Wiki.php:572 msgid "Wiki delete permission denied." msgstr "Se ha denegado el permiso para eliminar el wiki." -#: ../../Zotlabs/Module/Wiki.php:584 +#: ../../Zotlabs/Module/Wiki.php:582 msgid "Error deleting wiki" msgstr "Se ha producido un error al eliminar el wiki" -#: ../../Zotlabs/Module/Wiki.php:617 +#: ../../Zotlabs/Module/Wiki.php:615 msgid "New page created" msgstr "Se ha creado la nueva página" -#: ../../Zotlabs/Module/Wiki.php:739 +#: ../../Zotlabs/Module/Wiki.php:741 msgid "Cannot delete Home" msgstr "No se puede eliminar la página principal" -#: ../../Zotlabs/Module/Wiki.php:803 +#: ../../Zotlabs/Module/Wiki.php:817 msgid "Current Revision" msgstr "Revisión actual" -#: ../../Zotlabs/Module/Wiki.php:803 +#: ../../Zotlabs/Module/Wiki.php:817 msgid "Selected Revision" msgstr "Revisión seleccionada" -#: ../../Zotlabs/Module/Wiki.php:853 +#: ../../Zotlabs/Module/Wiki.php:872 msgid "You must be authenticated." msgstr "Debe estar autenticado." @@ -14446,17 +14819,17 @@ msgstr "Última actualización:" msgid "Details" msgstr "Detalles" -#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Notifications.php:58 #: ../../Zotlabs/Module/Notify.php:61 msgid "No more system notifications." msgstr "No hay más notificaciones del sistema" -#: ../../Zotlabs/Module/Notifications.php:59 +#: ../../Zotlabs/Module/Notifications.php:62 #: ../../Zotlabs/Module/Notify.php:65 msgid "System Notifications" msgstr "Notificaciones del sistema" -#: ../../Zotlabs/Module/Notifications.php:60 +#: ../../Zotlabs/Module/Notifications.php:63 #: ../../Zotlabs/Lib/ThreadItem.php:484 msgid "Mark all seen" msgstr "Marcar todo como visto" @@ -14674,32 +15047,32 @@ msgctxt "permcat" msgid "publisher" msgstr "editor" -#: ../../Zotlabs/Lib/Activity.php:2131 +#: ../../Zotlabs/Lib/Activity.php:2163 #, php-format msgid "Likes %1$s's %2$s" msgstr "Gusta de %2$sde %1$s" -#: ../../Zotlabs/Lib/Activity.php:2134 +#: ../../Zotlabs/Lib/Activity.php:2166 #, php-format msgid "Doesn't like %1$s's %2$s" msgstr "No le gusta %2$sde %1$s" -#: ../../Zotlabs/Lib/Activity.php:2140 +#: ../../Zotlabs/Lib/Activity.php:2172 #, php-format msgid "Will attend %s's event" msgstr "Asistirá al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2143 +#: ../../Zotlabs/Lib/Activity.php:2175 #, php-format msgid "Will not attend %s's event" msgstr "No asistirá al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2146 +#: ../../Zotlabs/Lib/Activity.php:2178 #, php-format msgid "May attend %s's event" msgstr "Puede asistir al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2149 +#: ../../Zotlabs/Lib/Activity.php:2181 #, php-format msgid "May not attend %s's event" msgstr "Puede no asistir al evento de %s" @@ -14984,6 +15357,10 @@ msgstr "ha editado un comentario %s" msgid "created an event" msgstr "se creó un evento" +#: ../../Zotlabs/Lib/Enotify.php:986 +msgid "verified" +msgstr "verificado" + #: ../../Zotlabs/Lib/Connect.php:271 msgid "error saving data" msgstr "error guardando los datos" @@ -15008,11 +15385,11 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/NativeWiki.php:145 +#: ../../Zotlabs/Lib/NativeWiki.php:146 msgid "Wiki updated successfully" msgstr "El wiki se ha actualizado con éxito" -#: ../../Zotlabs/Lib/NativeWiki.php:199 +#: ../../Zotlabs/Lib/NativeWiki.php:206 msgid "Wiki files deleted successfully" msgstr "Se han borrado con éxito los ficheros del wiki" @@ -15165,51 +15542,51 @@ msgstr "(Sin título)" msgid "Wiki page create failed." msgstr "Se ha producido un error en la creación de la página wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:122 +#: ../../Zotlabs/Lib/NativeWikiPage.php:123 msgid "Wiki not found." msgstr "No se ha encontrado el wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:133 +#: ../../Zotlabs/Lib/NativeWikiPage.php:134 msgid "Destination name already exists" msgstr "El nombre de destino ya existe" -#: ../../Zotlabs/Lib/NativeWikiPage.php:166 -#: ../../Zotlabs/Lib/NativeWikiPage.php:361 +#: ../../Zotlabs/Lib/NativeWikiPage.php:167 +#: ../../Zotlabs/Lib/NativeWikiPage.php:368 msgid "Page not found" msgstr "No se ha encontrado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:197 +#: ../../Zotlabs/Lib/NativeWikiPage.php:200 msgid "Error reading page content" msgstr "Se ha producido un error al leer el contenido de la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:352 -#: ../../Zotlabs/Lib/NativeWikiPage.php:401 -#: ../../Zotlabs/Lib/NativeWikiPage.php:468 -#: ../../Zotlabs/Lib/NativeWikiPage.php:509 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +#: ../../Zotlabs/Lib/NativeWikiPage.php:409 +#: ../../Zotlabs/Lib/NativeWikiPage.php:480 +#: ../../Zotlabs/Lib/NativeWikiPage.php:522 msgid "Error reading wiki" msgstr "Se ha producido un error al leer el wiki" -#: ../../Zotlabs/Lib/NativeWikiPage.php:389 +#: ../../Zotlabs/Lib/NativeWikiPage.php:396 msgid "Page update failed." msgstr "Se ha producido un error al actualizar la página." -#: ../../Zotlabs/Lib/NativeWikiPage.php:423 +#: ../../Zotlabs/Lib/NativeWikiPage.php:431 msgid "Nothing deleted" msgstr "No se ha eliminado nada" -#: ../../Zotlabs/Lib/NativeWikiPage.php:489 +#: ../../Zotlabs/Lib/NativeWikiPage.php:501 msgid "Compare: object not found." msgstr "No se ha encontrado un objeto para comparar." -#: ../../Zotlabs/Lib/NativeWikiPage.php:495 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 msgid "Page updated" msgstr "Se ha actualizado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:498 +#: ../../Zotlabs/Lib/NativeWikiPage.php:511 msgid "Untitled" msgstr "Sin título" -#: ../../Zotlabs/Lib/NativeWikiPage.php:504 +#: ../../Zotlabs/Lib/NativeWikiPage.php:517 msgid "Wiki resource_id required for git commit" msgstr "Se necesita Wiki resource_id para el git commit" @@ -15608,40 +15985,40 @@ msgid "" "an existing folder." msgstr "Puede seleccionar los archivos a través del botón de subir o soltarlos aquí mismo o en una carpeta existente." -#: ../../boot.php:1690 +#: ../../boot.php:1695 msgid "Create an account to access services and applications" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" -#: ../../boot.php:1714 +#: ../../boot.php:1719 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1715 +#: ../../boot.php:1720 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1716 +#: ../../boot.php:1721 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1719 +#: ../../boot.php:1724 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2588 +#: ../../boot.php:2603 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Error SSL del sitio web en %s" -#: ../../boot.php:2593 +#: ../../boot.php:2608 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:2709 +#: ../../boot.php:2724 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" -#: ../../boot.php:2714 +#: ../../boot.php:2729 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index c41cf9fe9..d61cb65c2 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -2,7 +2,7 @@ if(! function_exists("string_plural_select_es_es")) { function string_plural_select_es_es($n){ - return ($n != 1 ? 1 : 0); + return ($n != 1); }} App::$rtl = 0; App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)"; @@ -611,6 +611,7 @@ App::$strings["Diaspora Protocol Settings updated."] = "Los ajustes del protocol App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "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."; App::$strings["Diaspora Protocol App"] = "App Protocolo Diaspora"; App::$strings["Allow any Diaspora member to comment or like your public posts"] = "Permitir que cualquier miembro de Diaspora comente o ponga un like en sus entradas públicas"; +App::$strings["If this setting is disabled only your contacts will be able to comment or like your public posts"] = "Si esta configuración está desactivada, sólo sus contactos podrán comentar o dar a \"me gusta\" en sus publicaciones públicas"; App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "; App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Firmar y enviar entradas y comentarios sin firma de Diaspora"; App::$strings["Followed hashtags (comma separated, do not include the #)"] = "\"Hashtags\" seguidos (separados por comas, sin incluir #)"; @@ -1129,6 +1130,7 @@ App::$strings["__ctx:calendar__ week"] = "semana"; App::$strings["__ctx:calendar__ day"] = "día"; App::$strings["__ctx:calendar__ All day"] = "Todos los días"; App::$strings["Please stand by while your download is being prepared."] = "Por favor, espere mientras se prepara la descarga."; +App::$strings["Email address not valid"] = "Dirección de correo electrónica no válida"; App::$strings["Help:"] = "Ayuda:"; App::$strings["Help"] = "Ayuda"; App::$strings["Not Found"] = "No encontrado"; @@ -1487,9 +1489,9 @@ App::$strings["profile photo"] = "foto del perfil"; App::$strings["[Edited %s]"] = "[se ha editado %s]"; App::$strings["__ctx:edit_activity__ Post"] = "Publicar"; App::$strings["__ctx:edit_activity__ Comment"] = "Comentar"; -App::$strings["Not a valid email address"] = "Dirección de correo no válida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; -App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +App::$strings["The provided email address is not valid"] = "La dirección de correo electrónico proporcionada no es válida"; +App::$strings["The provided email domain is not among those allowed on this site"] = "El dominio de correo electrónico proporcionado no está entre los permitidos en este sitio"; +App::$strings["The provided email address is already registered at this site"] = "La dirección de correo electrónico proporcionada ya está registrada en este sitio"; App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; @@ -1500,9 +1502,14 @@ App::$strings["your registration password"] = "su contraseña de registro"; App::$strings["Registration details for %s"] = "Detalles del registro de %s"; App::$strings["Account approved."] = "Cuenta aprobada."; App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; +App::$strings["Could not revoke registration for %s"] = "No se ha podido revocar el registro de %s"; App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +App::$strings["open"] = "abierto"; +App::$strings["closed"] = "cerrado"; +App::$strings["Registration is currently"] = "El registro está actualmente "; +App::$strings["please come back"] = "por favor, vuelva"; App::$strings["Profile Photos"] = "Fotos del perfil"; App::$strings["Item was not found."] = "Elemento no encontrado."; App::$strings["Unknown error."] = "Error desconocido"; @@ -1863,36 +1870,40 @@ App::$strings["Update to Hubzilla 5.0 step 2"] = "Actualizar a Hubzilla 5.0. Pas App::$strings["To complete the update please run"] = "Para completar la actualización, ejecutar "; App::$strings["php util/z6convert.php"] = "php util/z6convert.php"; App::$strings["from the terminal."] = "desde la terminal."; -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."; -App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; -App::$strings["Registration successful. Continue to create your first channel..."] = "Registro exitoso. Continúe creando tu primer canal..."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; -App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; -App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; +App::$strings["Email address required"] = "Dirección de correo electrónico requerida"; +App::$strings["No password provided"] = "No se ha proporcionado la contraseña"; +App::$strings["Terms of Service not accepted"] = "No se han aceptado los Términos del servicio"; +App::$strings["Invitation code succesfully applied"] = "El código de invitación se ha aplicado con éxito"; +App::$strings["Invitation not in time or too late"] = "La invitación no llega a tiempo o llega demasiado tarde"; +App::$strings["Invitation email failed"] = "Error en el correo electrónico de invitación"; +App::$strings["Invitation code failed"] = "Código de invitación fallido"; +App::$strings["Invitations are not available"] = "No hay invitaciones disponibles"; +App::$strings["Email address already in use"] = "La dirección de correo electrónico ya está en uso"; +App::$strings["Registration on this hub is by invitation only"] = "El registro en este hub solo es posible por invitación"; +App::$strings["New register request"] = "Nueva solicitud de registro"; +App::$strings["Error creating dId A"] = "Error al crear dId A"; App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; App::$strings["Registration on this hub is by approval only."] = "El registro en este hub está sometido a aprobación previa."; -App::$strings["Register at another affiliated hub."] = "Registrarse en otro hub afiliado."; +App::$strings["Register at another affiliated hub in case when prefered"] = "Regístrese en otro hub afiliado en caso de que lo prefiera"; App::$strings["Registration on this hub is by invitation only."] = "La inscripción en este hub es sólo posible por invitación."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; +App::$strings["Register at another affiliated hub"] = "Regístrese en otro hub afiliado"; App::$strings["Terms of Service"] = "Términos del servicio"; App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; App::$strings["I am over %s years of age and accept the %s for this website"] = "Tengo más de %s años de edad y acepto los %s de este sitio web"; App::$strings["Your email address"] = "Su dirección de correo electrónico"; +App::$strings["Optional"] = "Opcional"; App::$strings["Choose a password"] = "Elija una contraseña"; App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; -App::$strings["Your Name"] = "Su nombre"; -App::$strings["Real names are preferred."] = "Se prefieren los nombres reales"; +App::$strings["Your name"] = "Su nombre"; +App::$strings["Real name is preferred"] = "Se prefiere el nombre real"; App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; -App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad."; -App::$strings["Read more about channel permission roles"] = "Leer más sobre los roles y permisos"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sí"; +App::$strings["Your nickname will be used to create an easy to remember channel address"] = "Tu alias se utilizará para crear una dirección de canal fácil de recordar"; +App::$strings["Why do you want to join this hub?"] = "¿Por qué quiere unirse a este hub?"; +App::$strings["This will help to review your registration"] = "Esto ayudará a revisar su registro"; App::$strings["Registration"] = "Registro"; -App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones."; +App::$strings["I have an invite code"] = "Tengo un código de invitación"; +App::$strings["This site has exceeded the number of allowed daily account registrations."] = "Este sitio ha superado el número permitido de registros diarios de cuentas."; App::$strings["Public access denied."] = "Acceso público denegado."; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; @@ -2050,7 +2061,6 @@ App::$strings["Automatically generated - change if desired. Max length 20"] = "G App::$strings["Redirect"] = "Redirigir"; App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; App::$strings["Icon url"] = "Dirección del icono"; -App::$strings["Optional"] = "Opcional"; App::$strings["Application not found."] = "Aplicación no encontrada."; App::$strings["Connected OAuth Apps"] = "Apps OAuth conectadas"; App::$strings["Client key starts with"] = "La \"client key\" empieza por"; @@ -2238,7 +2248,6 @@ App::$strings["By continuing, I certify that I have complied with any instructio App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; App::$strings["Not found"] = "No encontrado"; -App::$strings["Please refresh page"] = "Por favor, recargue la página"; App::$strings["Unknown error"] = "Error desconocido"; App::$strings["🔁 Repeated %1\$s's %2\$s"] = "🔁 Repetidos %2\$sde %1\$s"; App::$strings["Post repeated"] = "Entrada repetida"; @@ -2310,20 +2319,33 @@ App::$strings["%s account deleted"] = array( App::$strings["Account not found"] = "Cuenta no encontrada"; App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; -App::$strings["select all"] = "seleccionar todo"; -App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; +App::$strings["Unverified"] = "Sin verificar"; +App::$strings["Expired"] = "Caducado/a"; +App::$strings["Show verified registrations"] = "Mostrar registros verificados"; +App::$strings["Show all registrations"] = "Mostrar todos los registros"; +App::$strings["Select toggle"] = "Seleccionar alternar"; +App::$strings["Deny selected"] = "Denegar seleccionado"; +App::$strings["Approve selected"] = "Aprobar seleccionado"; +App::$strings["All registrations"] = "Todos los registros"; +App::$strings["Verified registrations waiting for approval"] = "Registros verificados en espera de aprobación"; App::$strings["Request date"] = "Fecha de solicitud"; -App::$strings["No registrations."] = "Sin registros."; +App::$strings["Requests"] = "Solicitudes"; +App::$strings["No registrations available"] = "No hay registros disponibles"; +App::$strings["No verified registrations available"] = "No hay registros verificados disponibles"; App::$strings["Block"] = "Bloquear"; App::$strings["Unblock"] = "Desbloquear"; +App::$strings["Verified"] = "Verificado/a"; +App::$strings["Not yet verified"] = "Aún no se ha verificado"; App::$strings["ID"] = "ID"; -App::$strings["All Channels"] = "Todos los canales"; +App::$strings["All channels"] = "Todos los canales"; App::$strings["Register date"] = "Fecha de registro"; App::$strings["Last login"] = "Último acceso"; App::$strings["Expires"] = "Caduca"; -App::$strings["Service Class"] = "Clase de servicio"; +App::$strings["Service class"] = "Clase de servicio"; App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["Invalid input"] = "Entrada no válida"; +App::$strings["Errors"] = "Errores"; App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; App::$strings["mobile"] = "móvil"; @@ -2336,6 +2358,17 @@ App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuit App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; App::$strings["Default permission role for new accounts"] = "Permisos de rol por defecto para las nuevas cuentas"; App::$strings["This role will be used for the first channel created after registration."] = "Este rol se utilizará para el primer canal creado después del registro."; +App::$strings["Minute(s)"] = "Minuto(s)"; +App::$strings["Hour(s)"] = "Hora(s)"; +App::$strings["Day(s)"] = "Día(s)"; +App::$strings["Week(s)"] = "Semana(s)"; +App::$strings["Month(s)"] = "Mes(Meses)"; +App::$strings["Year(s)"] = "Año(s)"; +App::$strings["Register verification delay"] = "Retraso en la verificación del registro"; +App::$strings["Time to wait before a registration can be verified"] = "Tiempo de espera para verificar un registro "; +App::$strings["duration up from now"] = "duración a partir de ahora "; +App::$strings["Register verification expiration time"] = "Tiempo de caducidad de la verificación del registro "; +App::$strings["Time before an unverified registration will expire"] = "Tiempo antes de que caduque un registro no verificado "; App::$strings["File upload"] = "Subir fichero"; App::$strings["Policies"] = "Políticas"; App::$strings["Banner/Logo"] = "Banner/Logo"; @@ -2351,25 +2384,39 @@ App::$strings["Allow Feeds as Connections"] = "Permitir contenidos RSS como cone App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; App::$strings["Maximum image size"] = "Tamaño máximo de la imagen"; App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; -App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; -App::$strings["Invitation only"] = "Solo con una invitación"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "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í\"."; App::$strings["Minimum age"] = "Edad mínima"; App::$strings["Minimum age (in years) for who may register on this site."] = "Edad mínima (en años) para poder registrarse en este sitio."; App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; App::$strings["This is displayed on the public server site list."] = "Esto se muestra en la lista de sitios de servidores públicos."; App::$strings["Register text"] = "Texto del registro"; -App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; +App::$strings["This text will be displayed prominently at the registration page"] = "Este texto se mostrará de forma destacada en la página de registro "; +App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; +App::$strings["Configure the registration open days/hours"] = "Configurar los días/horas de apertura del registro"; +App::$strings["Empty or '-:-' value will keep registration open 24/7 (default)"] = "El valor vacío o \"-:-\" mantendrá el registro abierto 24/7 (por defecto)"; +App::$strings["Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` example: 1:800-1200"] = "Los días de la semana y las horas deben separarse con dos puntos ':', los rangos Desde-Hasta con un guión `-` ejemplo: 1:800-1200"; +App::$strings["Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700"] = "Los pares día de la semana:hora deben estar separados por un espacio ' ' ejemplo: 1:900-1700 2:900-1700"; +App::$strings["From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or 1-2,4-5:900-1700"] = "Los rangos desde-hasta deben estar separados por comas ',' ejemplo: 1:800-1200,1300-1700 o 1-2,4-5:900-1700"; +App::$strings["Advanced examples:"] = "Ejemplos avanzados: "; +App::$strings["or"] = "o"; +App::$strings["Check your configuration"] = "Compruebe su configuración"; +App::$strings["Max account registrations per day"] = "Máximo de registros de cuentas por día "; +App::$strings["Unlimited if zero or no value - default 50"] = "Ilimitado si es cero o sin valor - por defecto 50"; +App::$strings["Max account registrations from same IP"] = "Máximo de registros de cuentas desde la misma IP"; +App::$strings["Unlimited if zero or no value - default 3"] = "Ilimitado si es cero o sin valor - por defecto 3"; +App::$strings["Auto channel create"] = "Creación automática de canales"; +App::$strings["If disabled the channel will be created in a separate step during the registration process"] = "Si se desactiva, el canal se creará en un paso separado durante el proceso de registro"; +App::$strings["Require invite code"] = "Solicitar código de invitación"; +App::$strings["Allow invite code"] = "Permitir código de invitación"; +App::$strings["Require email address"] = "Solicitar dirección de correo electrónico"; +App::$strings["The provided email address will be verified (recommended)"] = "La dirección de correo electrónico proporcionada será verificada (recomendado)"; +App::$strings["Abandon account after x days"] = "Abandonar la cuenta después de x días"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "ejemplo: 'pubstream' para mostrar el stream público, 'page/sys/home' para mostrar una página web del sistema llamada 'home' o 'include:home.html' para incluir un archivo."; App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; -App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; App::$strings["Allowed friend domains"] = "Dominios amigos permitidos"; App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "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."; -App::$strings["Verify Email Addresses"] = "Verificar las direcciones de correo electrónico"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; App::$strings["Force publish"] = "Forzar la publicación"; App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; App::$strings["Import Public Streams"] = "Importar contenido público"; @@ -2417,6 +2464,7 @@ App::$strings["Page to display after creating a new channel"] = "Página a mostr App::$strings["Default: profiles"] = "Perfiles predeterminados"; App::$strings["Optional: site location"] = "Opcional: ubicación del sitio"; App::$strings["Region or country"] = "Región o país"; +App::$strings["Invalid 24h time value (hhmm/hmm)"] = "Valor de tiempo de 24h no válido (hhmm/hmm)"; App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; App::$strings["Clear"] = "Vaciar"; App::$strings["Debugging"] = "Depuración"; @@ -2441,6 +2489,7 @@ App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; +App::$strings["select all"] = "seleccionar todo"; App::$strings["Censor"] = "Censurar"; App::$strings["Uncensor"] = "No censurar"; App::$strings["Allow Code"] = "Permitir código"; @@ -2455,7 +2504,6 @@ App::$strings["Account Edit"] = "Editar la cuenta"; App::$strings["New Password"] = "Nueva contraseña"; App::$strings["New Password again"] = "Nueva contraseña otra vez"; App::$strings["Account language (for emails)"] = "Idioma de la cuenta (para los correos electrónicos)"; -App::$strings["Service class"] = "Clase de servicio"; App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; App::$strings["Field nickname"] = "Alias del campo"; App::$strings["System name of field"] = "Nombre del campo en el sistema"; @@ -2515,6 +2563,36 @@ App::$strings["This channel will be completely removed from the network. "] = "E App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; App::$strings["Remove Channel"] = "Eliminar el canal"; +App::$strings["Email resent"] = "Correo electrónico reenviado"; +App::$strings["Email resend failed"] = "Fallo en el reenvío del correo electrónico"; +App::$strings["Verify successfull"] = "Verificar que se ha hecho bien"; +App::$strings["Account successfull created"] = "Cuenta creada con éxito"; +App::$strings["Channel successfull created"] = "Canal creado con éxito"; +App::$strings["Automatic channel creation failed. Please create a channel."] = "La creación automática de canales ha fallado. Por favor, cree un canal."; +App::$strings["Account creation error"] = "Error en la creación de la cuenta"; +App::$strings["Verify failed"] = "Verificación fallida"; +App::$strings["Token verification failed"] = "Ha fallado el token de verificación."; +App::$strings["Request not inside time frame"] = "Solicitud fuera de plazo"; +App::$strings["Identity unknown"] = "Identidad desconocida"; +App::$strings["dId2 mistaken"] = "did2 equivocado/a"; +App::$strings["Your Registration ID"] = "Su ID de registro"; +App::$strings["Registration verification"] = "Verificación del registro"; +App::$strings["Hold on, you can start verification in"] = "Espere, puede empezar la verificación en "; +App::$strings["Please remember your verification token for ID"] = "Por favor, recuerde su token de verificación para la identificación"; +App::$strings["Token validity"] = "Validez del token"; +App::$strings["Resend"] = "Reenviar"; +App::$strings["Registration status"] = "Estado del registro"; +App::$strings["Verification successful!"] = "¡Verificación exitosa!"; +App::$strings["Your login ID is"] = "Su ID de acceso es"; +App::$strings["After your account has been approved by our administrator you will be able to login with your login ID and your provided password."] = "Una vez que su cuenta haya sido aprobada por nuestro administrador, podrá iniciar sesión con su ID de acceso y la contraseña proporcionada."; +App::$strings["Registration request revoked"] = "Solicitud de registro anulada"; +App::$strings["Sorry for any inconvience. Thank you for your response."] = "Disculpe las molestias. Gracias por su respuesta."; +App::$strings["Please enter your verification token for ID"] = "Por favor, introduzca su token de verificación para la identificación"; +App::$strings["Verification token"] = "Token de verificación "; +App::$strings["ID expired"] = "ID caducada"; +App::$strings["You will require the verification token for ID"] = "Necesitará el token de verificación para identificarse"; +App::$strings["Unknown or expired ID"] = "ID desconocida o caducada"; +App::$strings["dId2 malformed"] = "did2 malformado/a"; App::$strings["Edit event title"] = "Editar el título del evento"; App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; App::$strings["Edit Category"] = "Modificar el tema"; @@ -2599,7 +2677,9 @@ App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \ App::$strings["This will be used to create a unique network address (like an email address)."] = "Esto se utilizará para crear una dirección de red única (como una dirección de correo electrónico)."; App::$strings["Allowed characters are a-z 0-9, - and _"] = "Los caracteres permitidos son a-z 0-9, - and _"; App::$strings["Channel name"] = "Nombre del canal"; +App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad."; +App::$strings["Read more about channel permission roles"] = "Leer más sobre los roles y permisos"; App::$strings["Create a Channel"] = "Crear un canal"; App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas."; App::$strings["or import an existing channel from another location."] = "O importar un canal desde otro lugar."; @@ -2852,7 +2932,7 @@ App::$strings["Sexual preference"] = "Preferencia sexual"; App::$strings["Profile name"] = "Nombre del perfil"; App::$strings["This is your default profile."] = "Este es su perfil principal."; App::$strings["Your full name"] = "Nombre completo"; -App::$strings["Short title/tescription"] = "Breve título y descripción"; +App::$strings["Short title/description"] = "Breve título y descripción"; App::$strings["Maximal 190 characters"] = "Máximo de 190 caracteres"; App::$strings["Street address"] = "Dirección"; App::$strings["Locality/City"] = "Ciudad"; @@ -2894,25 +2974,33 @@ App::$strings["Change channel nickname/address"] = "Cambiar el alias o la direcc 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["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; -App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -App::$strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", -); App::$strings["Invite App"] = "Solicitar una app"; -App::$strings["Send email invitations to join this network"] = "Enviar invitaciones por correo electrónico para unirse a esta red"; +App::$strings["Register is closed"] = "El registro está cerrado"; +App::$strings["Note, the invitation code is valid up to"] = "Tenga en cuenta que el código de invitación es válido hasta "; +App::$strings["Too many recipients for one invitation (max %d)"] = "Demasiados destinatarios para una invitación (máx %d)"; +App::$strings["No recipients for this invitation"] = "No hay destinatarios para esta invitación"; +App::$strings["(%s) : Not a valid email address"] = "(%s): No es una dirección de correo electrónico válida"; +App::$strings["(%s) : Not a real email address"] = "(%s) : No es una dirección de correo electrónica real"; +App::$strings["(%s) : Not allowed email address"] = "(%s) : Dirección de correo electrónico no permitida"; +App::$strings["(%s) : email address already in use"] = "(%s) : La dirección de correo electrónico ya está en uso"; +App::$strings["(%s) : Accepted email address"] = "(%s) : Dirección de correo electrónico aceptada"; +App::$strings["To %s : Message delivery success."] = "To %s : Entrega exitosa del mensaje."; +App::$strings["%1\$d mail(s) sent, %2\$d mail error(s)"] = "%1\$d correo(s) enviado, %2\$d error(es) de correo"; +App::$strings["Invites not proposed by configuration"] = "Invitaciones no propuestas por la configuración"; +App::$strings["Contact the site admin"] = "Contactar con el administrador del sitio"; +App::$strings["Invites by users not enabled"] = "Invitaciones de usuarios no habilitadas"; App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +App::$strings["Not on xchan"] = "No en xchan"; +App::$strings["All users invitation limit exceeded."] = "Se ha superado el límite de invitaciones a todos los usuarios."; +App::$strings["Invitation expires after"] = "La invitación expira después de "; +App::$strings["Invitation"] = "Invitación"; App::$strings["Send invitations"] = "Enviar invitaciones"; +App::$strings["Invitations I am using"] = "Invitaciones que estoy utilizando "; +App::$strings["Invitations we are using"] = "Invitaciones que usamos "; +App::$strings["§ Note, the email(s) sent will be recorded in the system logs"] = "§ Nota: el/los correo(s) electrónicos enviados quedarán registrados en los registros del sistema"; App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; -App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; -App::$strings["or visit"] = "o visitar"; -App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; +App::$strings["Invite template"] = "Plantilla de invitación"; +App::$strings["Here you may enter personal notes to the recipient(s)"] = "Aquí puede introducir notas personales para el/los destinatario(s)"; App::$strings["Notes App"] = "App Notas"; App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "Una simple aplicación de notas con un widget (aviso: las notas no están encriptadas)"; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; @@ -2946,7 +3034,6 @@ App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; App::$strings["Anybody on the internet"] = "Cualquiera en internet"; App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; -App::$strings["or"] = "o"; App::$strings["Your channel address is"] = "Su dirección de canal es"; App::$strings["Your files/photos are accessible via WebDAV at"] = "Sus archivos y fotos son accesibles a través de WebDAV en "; App::$strings["Automatic membership approval"] = "Aprobación automática de nuevos miembros"; @@ -3042,6 +3129,7 @@ App::$strings["Current Password"] = "Contraseña actual"; App::$strings["Enter New Password"] = "Escribir una nueva contraseña"; App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; +App::$strings["DId2 or Email Address:"] = "Did2 o dirección de correo electrónico: "; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; App::$strings["Addon Settings"] = "Ajustes de los complementos"; @@ -3380,6 +3468,7 @@ App::$strings["repeated %s's post"] = "repetida la entrada de %s"; App::$strings["edited a post dated %s"] = "ha editado una entrada %s"; App::$strings["edited a comment dated %s"] = "ha editado un comentario %s"; App::$strings["created an event"] = "se creó un evento"; +App::$strings["verified"] = "verificado"; App::$strings["error saving data"] = "error guardando los datos"; App::$strings["Missing room name"] = "Sala de chat sin nombre"; App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; -- cgit v1.2.3 From 628b03da29db206ef89026dd35b41ae1eb7d983d Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 4 Jun 2021 10:25:36 +0200 Subject: fix css issue --- view/tpl/login.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view') diff --git a/view/tpl/login.tpl b/view/tpl/login.tpl index 492149abb..1a47d122c 100644 --- a/view/tpl/login.tpl +++ b/view/tpl/login.tpl @@ -7,8 +7,8 @@ {{include file="field_checkbox.tpl" field=$remember_me}}
-